Part of the MVC pattern, the Model manages the behavior and data of the application.
0
votes
0answers
7 views
Detecting changes in the model; php yii framework
I'm creating an audit trail module that i will put in a larger system; and i've created a table to store the trail entries , as an "auditor" what i want to see the currently logged on user, the page ...
0
votes
0answers
7 views
How to do a background check on entry into the m2m communication in the query?
There are models:
class MyObject (models.Model):
name = models.CharField ()
class Day (models.Model):
day = models.IntegerField ()
class Month (models.Model):
month = ...
0
votes
2answers
21 views
Understanding how to create django Models
I followed some examples on the Django website and I understand the idea that Django wants you to separate pieces of the project into 'apps'.
Each 'app' has its own models. So if I want to create an ...
0
votes
1answer
14 views
CodeIgniter: Instances of CI_Model
I was wondering if CI_Model is more like a database layer, or can i really use it like i would normally use a model.
To me it looks really ugly to do things like:
for($i = 0; $i < 3; $i++){
...
0
votes
0answers
4 views
jomsocial photos model into profile module
I am trying to get a user album photos into the jomsocial profile template.
I allredy have my own userinfo.php into mytemplate/modules/profile/userinfo.php
In my photos tab i am trying to use my ...
0
votes
0answers
12 views
Source Reflection Errors with has_many :through
I'm attempting to create a system where my site's users can favorites pages. Those pages have two types, either clubs or sports. So, I have four models, associated as such:
User Model:
class User ...
0
votes
0answers
8 views
Entity Framework One 'Create' view for multiple models
Here is my 'Mentees' model:
{
namespace BEMentoring.Models
{
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using ...
0
votes
2answers
22 views
grails unknown number of model objects in the view
Working in Grails 2.2
I have a situation where I need to be able to handle an unknown number of CommitteeMembers in the view. These need to be both created and displayed.
Each one has the usual ...
0
votes
1answer
41 views
Native schema migration tool in Django
I'm a longtime PHP (cakePHP) developer but thinking of trying Django out.
Definitely I am missing something here. Django definitely does not suck because everyone in the whole internet seem to love ...
0
votes
2answers
42 views
How to map a RESTful API to an URL in BackboneJS model and collections?
I have the following RESTful API:
GET /club/1.0/club.json?sport=FO&country=ES
This service gives a list of clubs by sport and country (ex: Football in Spain)
GET /club/1.0/club.json?id=xxxx
...
0
votes
2answers
23 views
Backbone toJSON not rendering
when I use Backbone toJSON method of the model like this:
this.$el.html(this.model.toJSON());
It doesn't render model into view root element ( more than one attribute ).
But when I get one ...
1
vote
2answers
21 views
AutoMapper, how to keep references between mapped objects?
I am using AutoMapper to convert a UI model to POCOs that I later serialize to XML using a DataContractSerializer in order to preserve the references between them.
The problem comes that, when ...
1
vote
1answer
10 views
rails belongs_to foreign key is null
i have the following models
class User
has_many :projects, :through => :bids
has_many :bids, :dependent => :destroy
end
class Project
attr_accessible :name, :user_id
has_many :users, ...
0
votes
2answers
21 views
How i can get the error when cake are saving?
I have a form, with some fields. When i try save, not happens and I don´t know what´s the problem.
How can i see whats happening on the save moment ?!
Thanks you!.
0
votes
1answer
20 views
Why doesn't my save method work in the admin?
In my model I overwrite the save-method for my blog model to auto-populate the slug field using the slugify method.
class BlogPost(models.Model):
title = ...
2
votes
1answer
37 views
Yii multiple relations to same table
I have the following relations defined in my UserBan model:
public function relations()
{
// NOTE: you may need to adjust the relation name and the related
// class name for the relations ...
1
vote
2answers
30 views
Models not being saved in Play Framework
Assume a model named User:
@Entity
public class User extends Model {
@Id
@Constraints.Min(10)
public Long id;
@Constraints.Required
public String username;
...
0
votes
1answer
29 views
Django save model and its children with ModelForm
I have such models: Article, Link & ArticleLink. Article can have many links attached to it and I need to save them from one form.
I have created all the relations and a ModelForm for Article, ...
1
vote
1answer
47 views
What is an anemic model?
I've been searching around for a while trying to understand just what this is, but I'm not really clear. What is an anemic model, and what is it an alternative to?
0
votes
2answers
18 views
CakePHP belongsto like %%
i need some help with these, I can't seem to be able find anything on internet.
I have a model
public $belongsTo = array(
'Group' => array(
'className' => 'Group',
...
0
votes
1answer
22 views
Creating two models in one form
This is a sample of my code:
<%= form_for [@facility, @owner],:html => {:multipart => true} do |f| %>
<%= render 'shared/error_messages_doc' %>
<table>
...
0
votes
0answers
19 views
SlidingWindowTest Function not in R DMwR Package
While recently building a model I found that the latest version of DMwR package does not contain slidingWindowTest or growingWindowTest. Could anyone point me out to any existing alternatives?
5
votes
2answers
276 views
Where Should Model State Be Stored In Angular JS
I'm finding Angular's use of models confusing. Angular seems to take the approach that a model can be anything you like - I.E. Angular does not include an explicit model class and you can use vanilla ...
1
vote
1answer
29 views
object has no attribute '__getitem__'
I have two model like this:
class School(models.Model):
name = models.CharField(max_length = 50)
def __unicode__(self):
return self.name
class Education(models.Model):
...
0
votes
1answer
22 views
Automatically create a summary of TextField
I am trying to create a summary field of a blog post object. I want the field to prepopulate based on the text entered into the TextField (text) above. For example, if I write a blog post 500 words ...
0
votes
3answers
28 views
The right way to design a job model
I have a silly Job model in my app:
class Job(models.Model):
# working info
user = models.ForeignKey(User)
company = models.CharField(max_length=100, blank=True)
department = ...
1
vote
2answers
31 views
Work flow in MVC models?
I'm looking at the ruby gem workflow: https://github.com/geekq/workflow
The examples and other examples on the web have the workflow code in the model itself. I believe this is a violation of SOLID. ...
0
votes
3answers
55 views
Ember.js AJAX Model
I am a CodeIgniter dev and I am trying to learn ember.js.
I have been trying to get a model together which will make an AJAX call to a server, pull in a XML file, parse the data and return it.
The ...
2
votes
2answers
45 views
Reusing server-side models in AngularJS
So, I am looking to build something with AngularJS.
Liking what I see so far, but there is something nagging me.
How do I make angular generate forms (and possibly routes) by looking at my model ...
0
votes
0answers
14 views
doctrine:generate-migrations-diff always wants to create a foreign key that already exists in model
this is my first question on stackoverflow, although I have searched many times in these archives.
I am struggling with a strange behaviour with symfony 1.4 and doctrine migrations:
I have three ...
0
votes
1answer
14 views
How to fix PGError in rails for ActiveRecord?
I am trying to get the unique values in the column 'genre' in Rails. The commented out section works on localhost but in production I get a PG Error: ActiveRecord::StatementInvalid (PGError: ERROR: ...
1
vote
1answer
24 views
BackboneJS: Check username
I'm using BackboneJS and I have a model called "username".
I'd like to send a request to my API to check if the username in my model is available on my database.
var usernameModel = ...
0
votes
1answer
41 views
Override partial class field in ASP MVC model
In my ASP MVC project, whenever I add a new table to my project two models are created. One under the Text Templating Transformation Toolkit (file w/.tt extension), and another outside this in the ...
1
vote
2answers
41 views
Randomly pick photo from User model ruby
The schema for my ruby on rails app is below. I am currently filling my home page and want to randomly pick photo(s) from a random existing user to feature on the home page.
I have tried a lot of ...
0
votes
1answer
14 views
cakephp 2.X override table prefix dynamically on join action
I a cakephp setup to manage multiple web-sites in which they a number of common models, with the table prefix 'main_'. And there's common model Fbuser is using a table 'main_fb_users'
And now, I have ...
1
vote
2answers
45 views
Error messages from model in Rails 3.2
Currently my app includes the following code to display the error messages on a view from model.rb but it is not updated code as error_messages_for is deprecated in Rails 3. Can anyone please suggest ...
0
votes
1answer
45 views
One variable in model becomes null after http post
I'm having a problem with my model losing one of its values when submitted in a http post form.
The controller methods:
[HttpGet]
public ActionResult AddTeam(int id)
{
return ...
0
votes
1answer
34 views
cakephp - difficulty to access a specific information in my controller
I have these tables and the relationships between them:
1 project hasmany configurationcontext 1 issuetype hasmany
optionconfiguration hasmany configurationcontext hasmany
optionconfiguration (does ...
0
votes
2answers
44 views
Only save the records that don't exist
Currently I am grabbing football fixtures via a screen scrape and each time the rake task is performed I am deleting all the records and saving the new ones..I don't want to do this, I want to only ...
0
votes
1answer
19 views
Advance Search Form for rails app with multi model criteria
I have a rails app with various models and I want to built an advance search form which should be something like this -
Search For --- Model1 Model2 Model3
Search By -- In case of Model1 selected ...
0
votes
0answers
54 views
Restore specific file version using SharePoint Client Object Model
I am trying to restore specific file version using SharePoint Client Object Model. However, I keep getting error - file not found. I clearly see the version exists while browsing.
ClientContext ...
0
votes
1answer
28 views
how backbone.js model fetch method works
i am very confuse about using backbone.js model fetch method. See the following example
backbone router:
profile: function(id) {
var model = new Account({id:id});
...
0
votes
3answers
57 views
Grab id from another model and then save it into a new model
Really trying to get my head around the following situation. I am grabbing football results via a screen scrape and saving them to a model (result), ok so far.... I have some associations setup ...
0
votes
2answers
28 views
How must I structure my models to connect owners, borrowers and products?
I'm a newbie in code, and I'm trying to set up two connected models : A user model, and a product model.
The product model has two user, one is the owner, and another is the borrower.
The user model ...
0
votes
1answer
16 views
Limit ignored when used with find_by_id
I am trying to understand a behaviour of Rails ActiveRecord with limit.
Let's say I have a model Car with only one attribute name.
Now in the console (rails console), if I type:
...
1
vote
1answer
15 views
Most basic rails controller implementation
I dont get this basic implementation.
models
class Player < ActiveRecord::Base
has_one :listing
end
class Listing < ActiveRecord::Base
belongs_to :player
end
Player controller
...
1
vote
2answers
21 views
how do I generate a bitmap from a model using using XNA?
I wish to dynamically create an image (as a Texture2D) from a camera view of a 3D model using XNA-4.0. I can set up a model and camera to get the view I desire, but because I will need to ...
0
votes
1answer
22 views
cakePHP Validations : one model for to forms in the same view
I have one view wich has 2 forms one for login and one for registration as following :
signup.ctp //my view
<div>
<?php
echo $this->Form->create("Tbluser");
...
0
votes
1answer
18 views
How to model a global resource in a REST API?
REST seems to focus most on collections of resources -- lists of things. How should one model something that exists exactly once in a system? And more specifically something very simple. Suppose ...
0
votes
0answers
48 views
DropDown list issue in knockout js asp.net mvc 3
I have the following problem. I'm developing web application on asp.net mvc and using KnockoutJS in one of views. I have the following viewmodel
public class ExampleViewModel
{
public ...




