Part of the MVC pattern, the Model manages the behavior and data of the application.
3
votes
0answers
255 views
Web API model binding issue in POST
I am new to Web API and this is really puzzling to me.
Here is the model:
public class Model
{
public string firstname { get; set; }
public string lastname { get; set; }
}
here is the ...
3
votes
0answers
452 views
concatenate two active record results (through join table) to return a new result
I have the following :
Account --> Options
Account --> Profiles --> Options
Here are the models
# models/account.rb
class Account < ActiveRecord::Base
has_many :accounts_has_options
...
3
votes
0answers
222 views
Implementing boundary representation modeling
Does anyone have any good implementation strategies or resources for putting together a b-rep modeling system?
OpenCascade is an apparently good library for b-rep modeling (used by FreeCad and ...
2
votes
0answers
36 views
Can't set Default Values For Number and String Types in Ember Models
I'm trying to set default types in an Ember Model, but only some types work:
createdDate: DS.attr('date', {defaultValue: new Date()}) // Works
createdDate: DS.attr('boolean', {defaultValue: ...
2
votes
0answers
48 views
CakePHP 2.1 pagination
I am using cakephp 2.1 and I have included pagination for two models in same action.
When I click on pagination link of either models, It refreshes both but not single. Please help me if click on any ...
2
votes
0answers
110 views
Model View Presenter - Passive View - Who loads the Model?
I'm curious in using the MVP Pattern to improve testability. I have experience with MVC but MVP seems different.
I'm having an application that operates on a 'project' file which is in fact an ...
2
votes
0answers
109 views
Get and combine data from an intermediate tastypie resource
Is there a best practice to add data from an intermediate table to a resource only when the details are requested for that resource?
As an example I will use the Django example models (Person, Group ...
2
votes
0answers
101 views
How do I fix a migration error I'm getting with South?
I tried to change a field in the below model from CharField to ForeignKey and I get an error when I run the migration. The error I get is:
FATAL ERROR - The following SQL query failed: CREATE INDEX ...
2
votes
0answers
132 views
Survey Weighted Random Effects Logit Model in R
I am trying to predict a binary outcome with a model that includes a random effect using survey data. I've included a description of the sampling design below, so feel free to comment on my survey ...
2
votes
0answers
594 views
How do i use SharePoint Client Object Model and PowerShell to upload documents to libraries?
I've tried converting these code snippets to PowerShell:
ClientContext context = new ClientContext("http://spdevinwin");
2:
3: Web web = context.Web;
4:
5: FileCreationInformation ...
2
votes
0answers
253 views
Trouble on saving nested models
I am using Ruby on Rails 3.0.7 and I am trying to save an "has_many :through => checkboxes" class object (I have read the Quick Tip: has_many :through => checkboxes blog post) but I have some ...
2
votes
0answers
514 views
using :counter_cache with some conditions
I have the following model:
class EntityTag < ActiveRecord::Base
attr_protected :user_id, :post_id, :entity_id
belongs_to :user
belongs_to :post
belongs_to :entity
validates :user_id, ...
1
vote
0answers
42 views
“EntityType has no key defined” exception although key is defined with HasKey
Using EF 5 (reverse engineered code first), my model was working fine until it suddenly stopped.
\tSystem.Data.Entity.Edm.EdmEntityType: : EntityType 'ProjectsDate' has no key defined. Define the ...
1
vote
0answers
29 views
ajax post - loading div contents, model validation not working
My problem is that the Client side Model validation is not working when I am loading the contents of the div through an ajax call.
My Partial View returned from the ajax call is a View containing ...
1
vote
0answers
121 views
Spring 3 MVC - Model not displaying in JSP Page
On the surface, this question will sound a lot like questions that may have been asked previously on SOF but I tried those answers long ago and no luck.
(For example, this question spring 3 not ...
1
vote
0answers
73 views
Generate XSD with validation form ASP.NET Web API models
I have a ASP.NET Web API project with a few MVC models. Is it possible to generate XSD's from the MVC models?
And, is it possible to keep the validation data annotations in the generated XSD's? If ...
1
vote
0answers
36 views
XNA Model rendering: texture is there, but messed up
I just found out how to export a 3D textured model from blender and successfully imported it into my xna program, but it seems to be sampling the texture wrong. At first I thought that my custom HLSL ...
1
vote
0answers
70 views
Asp.net 4.5 WebForms ModelBinding not allowing setting selectedvalue on dropdownlist
I'm using Asp.net 4.5 model binding. I have a dropdownlist that has a select method which returns an IEnumerable list of Products. Everything works as expected. However, when I land on the page, I ...
1
vote
0answers
107 views
backbone supermodel.js — lost associations of models after fetching from localStorage
I have two Backbone SuperModel Info and Content, and associate 1-to-1 with each other in the way:
Info.has().one('content', {
model: Content,
inverse: 'info'
});
...
1
vote
0answers
50 views
How to reorder data in a tree stored using the nested set model?
I have a table with the following structure
CREATE TABLE `nested_set`
(
`id` int(11) unsigned NOT NULL auto_increment,
`lft` int(11) NOT NULL,
`rgt` int(11) NOT NULL,
`id_parent` ...
1
vote
0answers
37 views
Sending a model for use throughout all views linked from a layout
I am working on a web service built on ASP.NET MVC 4 and have run into some trouble figuring out how to manage a model after log in so that it is widely available to all action functions created in ...
1
vote
0answers
66 views
How can I set the belongs_to association of a new object via a dropdown menu in the form?
So I'm new to Rails, and I've just finished going through Michael's Hartl's railstutorial.org.
I'm now building my first app, and i'm encountering my first road block.
So basically i've got Bubbles ...
1
vote
0answers
48 views
Where and how to put Model query methods in Rails 3?
i'm looking for an elegant way to make a model method call. Here is my query:
where("order_id = ?", argument).first
I can't use this query in a scope, because of the first() method, which is ...
1
vote
0answers
54 views
Loop through model properties and get value in code file
In my application I have created a method that sorts my data and creates a list that I pass to my data layer. I have overloaded it to accept params object[] and a model. I am writing my overloaded ...
1
vote
0answers
305 views
Error MVC org.springframework.validation.BeanPropertyBindingResult: 1 errors with array
Hi I try pass an array in a bean from jsp to java.
@ModelAttribute("areasActividadAdminBean")AreasActividadAdminBean areasActividadAdminBean
Agrupacion[] listaAgrupaciones = x;
...
1
vote
0answers
85 views
Django model save issue
I will clear my situation here.
i have some model as:
class Messages(models.Model):
message_idnr = models.BigIntegerField(primary_key=True)
mailbox_idnr = models.ForeignKey(Mailboxes, ...
1
vote
0answers
59 views
Matlab: How to fit a state space model to data with nlinfit
I've run an experiment and would like to fit a state space model to the data. Unfortunately I have little experience with how to implement this, so was hoping to ask for some help.
In the experiment ...
1
vote
0answers
25 views
Hard Wrap for TextField in Django
I am using TextField in django and I have a form for the user to enter a passage. I want this passage to be saved with hard wrap in such a way that it appears the exact same way in terms of spacing ...
1
vote
0answers
70 views
How do I take a 3d dimensional array and convert it into a model?
I'm using Open CV and I'm able to extract multidimensional data from and image with my codes but what would be an easy way to display it? I have a 3D array:
line start [x] [y] [z]
line end [x] [y] ...
1
vote
0answers
68 views
Linux kernel device model - Which devices are following it?
My question is about linux device model. I did some digging myself in the source code and found that the device model works around many structures out of which some of them are:
struct device
struct ...
1
vote
0answers
54 views
Entity Framework generation generates nothing
I created a database (called Data1) in sql server 2008 using sa account, and then a table (called Table1) in Data1. However, after i have used the ADO.NET Entity Data Model to generate entity from ...
1
vote
0answers
32 views
NoMethodError: undefined method `create' on model test
i use ruby on rails. i try to write a test. The test is model(unit) test.
class Authentication
include Mongoid::Document
field :provider, type: String
field :uid, type: Integer
field :name, type: ...
1
vote
0answers
151 views
Opencart Upsell after clicking 'confirm order'
I am working on a project with open cart and I am quite perplexed. My problem is that when I add the upsell to the 'confirm order' button right after a user enters the payment method information (CC ...
1
vote
0answers
41 views
with_options not working in RoR3 model
Can someone please explain to me why it seems to ignore the with_options block in this code?
class User < ActiveRecord::Base
attr_accessible ...
1
vote
0answers
66 views
Reading data from a model
I am working on a PyQt application, which has a TreeView, and data is displayed there using a model. Let me present first the code, and describe then the difficulties I have.
class ...
1
vote
0answers
132 views
How to combine 2 or more different models to predict one response variables?
I think one independent variables is so importance and primary that I want to use only it to build a model and use rest of other variables to build other models.
Such as in Titanic competition on ...
1
vote
0answers
86 views
Entity Framework 4.1 Complex Type reuse in different models
Here is the senario for which I could not find anything useful. Maybe Im the first person thinking of doing it this way:
Approach: Database First
Database: SQL Server 2008 R2
Project : DLL (Data ...
1
vote
0answers
214 views
Making a model retrieve external JSON feed with Alloy in Titanium
I've searched the net through for examples and tutorials on using the Alloy framework for Titanium to fetch data from an external JSON feed.
What I need to do is simply to collect strings and images ...
1
vote
0answers
22 views
AIC values in model comparison
I was comparing two models using the AIC. However, I realized that both AIC values are too small (-4752.66, and the other is close to that). I was wondering if that is normal or I did something wrong ...
1
vote
0answers
143 views
add validation to multiple select list box in cakephp
Hello I have created function for creating form in helper.This is my function.
function createAlbumForm1($controller, $actionUrl, $dialogTitle, $dialogId, $bandId ) {
// echo "hello";
...
1
vote
0answers
63 views
Categorizing product data model
I'm about to rebuild an e commerce website with a mid sized database of about 40,000 product.
One of the main reasons we are putting the old system to retire is the categorization mechanism.
We are ...
1
vote
0answers
69 views
How to design a Model in ASP.NET Web API
In ASP.NET Web API:
The simply Model class code sample like:
public class Member
{
public int id { get; set; }
public string name { get; set; }
}
We can easy to wrote the Controller code to ...
1
vote
0answers
71 views
Core Data and UIPickerView - Default Value
I am working on an iPhone/iPad App that is using core data. I have a Table (Entity) that wants the user to select from another Table (relationship is setup in the model). I have worked through ...
1
vote
0answers
83 views
How to implement View Model functionality in ASP.net Web Site
I'm working with an asp.NET web site -- something I'm not used to. I have a page with a ton of asp:Textbox controls, all with runat="server", and I have a DataTable full of their values. Basically I ...
1
vote
0answers
127 views
how can i store several rdf data to a tdb dataset?
i am complete newer to tdb and i want to store several rdf data into tdb .many code is as follows:
public static final String book = "Ontologies/book.rdf";
public static final String conference = ...
1
vote
0answers
86 views
node.js base class for abstracting get/put logic to storage
I was wondering if anyone had any good examples of a node.js base "class" for abstracting out the get/put logic to storage. For example pseudo code. I realize it would prototypcal inheritance, i am ...
1
vote
0answers
94 views
rails before_destroy partial delete
I'm trying to figure out a way to partially delete/destroy dependent models in rails.
Code looks something like this:
class User < ActiveRecord::Base
has_many :subscriptions
has_many ...
1
vote
0answers
20 views
Is there a Qt builtin model that doesn't allow duplicate data?
Is there any Model of Qt that doesn't allow duplicate entries? Or should I inherit QStandardItemModel and make a change?
1
vote
0answers
113 views
how To display child and parent json data in each row of the list in sencha using model and store
My server returning the following nested json. I want to display the fullname and text comes as a each row of the list.like,
apple Message2
apple Message1
Instead of this, I got one row contains ...
1
vote
0answers
86 views
Getting the Gaussian model weight
I am wondering how to get single model weight from several Gaussian mixture models in OpenCV. For
For instance, if the number of models is five for GMM I want to get the weight of the second or third ...
