The models tag has no wiki summary.
0
votes
1answer
16 views
prevent validation from showing on multiple forms cakephp
i have a strange problem, i have a page where in top right there is a login panel,
and somewhere on the middile of the page there is a register form.
Both login form and register form has fields ...
-1
votes
1answer
25 views
Querying a ManyToMany Field in a Django model
So I have these two models:
class Player(models.Model):
playerName = models.CharField(max_length= 50)
playerTeam = models.CharField(max_length=20)
class Role(models.Model):
roleName = ...
0
votes
1answer
38 views
set auto increment initial value for id in django model
i have a model with just one field.
name.
class City(models.Model): <br>
name = models.CharField(max_length=30)
Django sets id by itself so I end up with id and a description field in ...
0
votes
0answers
12 views
Reverse complement of reconstruction model for assembling reads
One way to assemble fragments produced by DNA sequencing (often called reads) is to seek for the shortest common superstring that contains all the reads of a given set of reads. One model for this ...
1
vote
1answer
32 views
Django: get subset of a model with at least one related model
class Category(models.Model):
# fields
class Product(models.Model):
category = models.ForeignKey(Category)
# fields
Assuming that not all the categories have at least a product,
how ...
2
votes
1answer
19 views
IntegrityError: null value in column “city_id ” violates not-null constraint
I two model:
class City(models.Model):
name = models.CharField(max_length=50)
country = models.OneToOneField(Country)
def __unicode__(self):
return self.name
class ...
2
votes
2answers
31 views
Create OneToMany models in django
I want to create one to many model in django.
for example I have
class UserProfile(models.Model):
user = models.OneToOneField(User)
mobile = 1 #I want OneToMany
website = ...
0
votes
1answer
30 views
(django) when I delete the model, How can i delete the inlines data and the uploaded file
models.py
class Issue(models.Model):
issueId = models.AutoField(primary_key=True)
title = models.CharField(max_length = 20)
year = models.IntegerField()
issueDate ...
2
votes
2answers
76 views
What is a model and what is not a model php
I'm quite confused on how do I build my models, I failed to understand this for the last 9 months. Although I am reading and watching all the references , @teresko gave to me.
To further narrow down ...
0
votes
2answers
59 views
Yii: How to Fetch data from mutiple models with criteria?
I'm trying to fetch data from the database with an innerjoin and criteria.
I want to have al the result of the users and the videos.
For now i'm using the createCommand:
public function ...
0
votes
0answers
28 views
Models not loading in CodeIgniter controller
I have a controller whose class name is same as controller name and I have loaded two models in my constructor of the controller. However, when I load the third model it shows an error:
A PHP Error ...
0
votes
1answer
26 views
How to use “Models::find()” in phalcon framework?
$submodules = Modules::find(
array(
'moduleid in (:mods:) and parentid = :parentid:',
'bind' => array(
'mods' => '1,2',
'parentid' => 1
),
...
0
votes
1answer
24 views
proceeding to next id from model php
Hi I'll post the code in question first then ask the question(s).
function printUserActiveAds($currUser){
$activeUser = new users();
$userActiveAds = new userAds();
echo
...
0
votes
1answer
19 views
how to pass parameters from one model to another in Rails
Hi I have two model Company and Feed
company.rb
class Company < ActiveRecord::Base
attr_accessible :rss_url, :name
has_many :feeds
end
feed.rb
class Feed < ActiveRecord::Base
...
0
votes
1answer
27 views
Source of the New and Create Methods in Rails ActiveRecord while using Associations
I was wondering what the source (i.e., defining class or module) of the New and Create methods is while using associations in Rails.
For example, the Associations section of the Rails guides ...
0
votes
1answer
29 views
getting model data to a view backbone.js
I am trying to understand the relationship between a model and a view. I've tried building a model and view to render that model.
I get the error Cannot call method 'toJSON' of undefined which I ...
1
vote
1answer
18 views
Is there a standard code order in a model?
I was wondering if there was any type of convention on how code in models should be ordered.
For example...
Class Foobar
#includes
#associations
#accepts_nested_attributes_for
...
-2
votes
1answer
17 views
Inner join cakephp 2?
I'm having 2 tables named, users and userdetails. Basicly the query i want to run is:
SELECT * FROM users INNER JOIN userdetails ON users.id = userdetails.userid
I wonder how you could get this ...
-1
votes
1answer
27 views
models and forms in one class (Django)
I am new to Django and Python and wanted to ask you how I can get models and forms in one class. I want to use Radio Buttons, EmailField, DateTimeField so I need really both (models and forms) :
...
0
votes
2answers
43 views
Spring MVC 3.0 handling data
I'm learning Spring MVC 3 and I'm stuck on I guess a simple issue. I have a View calculator that takes 2 integers in a form. These are passed into my form pojo. My Controller adds and then prints to ...
0
votes
1answer
37 views
Why is “blank” is missing in django.forms.CharField, but present in django.db.models.CharField?
Background
I have a model with two fields that are set the blank:
class News(models.Model): ...
0
votes
1answer
57 views
models.DateTimeField(auto_now_add = True)
I have a problem with my models.DateTimeField, because I´m from México and in settings.py I use this:
TIME_ZONE = 'America/Mexico_City'
But when i add a register in my mysql database, it says that ...
0
votes
1answer
39 views
How to tweak models before rendering of the view
I've been looking for a simple way to tweaks my Ember Data models before the view is rendered. How can I do this? I tried to use setupController but that doesn't seem right since they don't seem to be ...
0
votes
1answer
33 views
Rails 3.2 Rendering Associated Models in Same Form
i'm working through Hartl. Ive got to the microposts section in Chapter 10, but instead of microposts I have introduced Hotels, and now I want to add them to a separate address model, like in this ...
0
votes
1answer
112 views
Laravel: Can't access methods in Model from Controller
I'm having an issue with one of my controllers accessing the methods within a model.
I have a controller (application>controllers>event.php) with an index method:
class Event_Controller extends ...
-1
votes
0answers
39 views
Django model object
I created a table and inserted some values in my models.py:
from django.db import models
class Zonas(models.Model):
name = models.CharField(max_length=30)
def __unicode__(self):
...
1
vote
1answer
45 views
Django charfield model with db query
I am trying to generate a select menu on hello.html with a list from a db query.
My models.py:
class hello(models.Model):
q = """
SELECT * FROM ZONAS
WHERE cod_zona = 1
"""
...
1
vote
1answer
21 views
Validating a conditionally displayed field in Rails
I have a Competition and a Competition Entry model, the former includes a form and an optional "Question" field which isn't displayed if the admin user doesn't fill it out.
The Competition Entry ...
0
votes
1answer
62 views
storing variables when diverting to paypal for use on return url mvc4
I have a mobile web app written using mvc4, I am using it to take payments through paypal, basically, I connect to the web app which is hosted on our server, I then log in, which actually logs into a ...
0
votes
1answer
38 views
Showing Django model field in HTML
I was wondering how to display a field that I have into an HTML output.
I have this class in my model.py
class Tower(models.Model):
ap = models.IntegerField()
And I wanted to display the value ...
0
votes
0answers
54 views
How to dynamically allocate valueBinding in Ember TextField based on view loading the template
I have a few views and they each share the same template. In the template properties of the view that is loading it are used as id, name etc. for various elements.
Among these elements is an input ...
2
votes
1answer
52 views
Rails Relationship Between Two Models
Is there a way to determine the relationship method Rails creates between two models dynamically?
For example:
unknown_method_i_wish_existed(class_name_1, class_name_2)
# awesome logic
# returns ...
0
votes
2answers
34 views
hasOne relationship saving new record instead of using existing one
I have a Page model and a Category model. Basically, each page belongs to a category. The models are set up so Page belongsTo Category, and Category hasMany Page.
When adding new pages, I'm using ...
0
votes
1answer
29 views
Is it possible to store one specific Django model/Postgresql table on another sever?
Django natively stores all the content associated with it's models to one server. What if you wanted to store one specific Django model on another server? Is there something you can change in the ...
0
votes
1answer
81 views
ASP.NET MVC 4 get value from different controller
I have a class "Student" and other class "scoresheet".
Each Professor should be able to fill up a scoresheet for each student. I have been able to create, list, edit the scoresheet with using the ...
0
votes
1answer
134 views
Django: object needs to have a value for field “…” before this many-to-many relationship can be used
I experience a strange error with Django 1.5:
I have defined a model like below:
class Company(models.Model):
user = models.OnetoOneField(User)
agreed_to_terms = ...
2
votes
2answers
117 views
ASP NET MVC 2 models in one view
I am trying to pass two models in to a partial view. Problem is that in my View i can only find : "Model.Class1" and "Model.Class2",while i actually want to get Model.Class2.UserID..
I did get it to ...
0
votes
1answer
32 views
Anything wrong with instantiating an object in a Model and returning the object with the Model values in CakePHP?
Like performance issues or something? Basically I will have some Views whose data will be coming in across different models and I just want to have the data sent back to be the ones that I need, and ...
0
votes
1answer
26 views
Django Using Foreing key
I want to know how I can fix the code for getting an foreing value from class Categoria, I need to get nombrecategoria field but for the moment I don't know what's wrong.
models.py
class ...
0
votes
1answer
23 views
Belongs_to only recognized by console, not server
I've got a really weird problem with my project. I've got 2 models, the one is Link and the other Category. I've got a index view where all the links should be listed, together with the corresponding ...
0
votes
3answers
32 views
Import model error from one app to another app
I have 2 app inside a django project.I want to import a model from one app to another. but it gives me NameError: name 'JobGenre' is not defined when I try to syncdb
in customer.models
from ...
0
votes
0answers
57 views
Can't get data from model to appear in template Ember.js
My code is here: http://jsfiddle.net/FNn4R/4/ I can't get the outgoings model (a model with messages outbound) to display in the template.
HTML
<script type="text/x-handlebars" ...
1
vote
1answer
81 views
Django: How do I sort on date from two models?
1.) I have the following models.py definition:
from django.db import models
from datetime import date
class Author(models.Model):
author = models.CharField(max_length=20)
...
0
votes
1answer
23 views
Overriding get_absolute_url from a model for the sitemap
Hey i have a model that can be accesed through 2 different urls(depending on the domain). And i use them like this in views and templates without problems.
When building the sitemap the ...
0
votes
1answer
26 views
Overriding @Display
I've different model types that are subclasses of abstract model. I'm rendering it in that way:
<ul>
@foreach(dynamic model in @Model.ModelList)
{
<li>
...
0
votes
1answer
25 views
OneToOneField empty from both sides
is there any way to create a OneToOneField, which can be empty on both sides?
I mean if i' ve this relation between ModelA and ModelB, i want to allow ModelA not having a ModelB relatioship, and ...
1
vote
2answers
62 views
Can someone check my code to see why this message pops up “Error: could not find function ”N1“”
I know its a simple fix but can someone please take a look at it:
a12= 0
a21= 0
K1= 1000
K2= 600
r1= 0.2
r2= 0.1
N1= ((K1 - a12*K2)/(1 - a12*a21))
N2= ((K2 - a21*K1)/(1 - a21*a12))
for(t in 1:80){
...
0
votes
0answers
89 views
Augmented Reality AS3 - Changing DAE Models
Hello I am wondering how would I go about changing the .DAE model upon the user pressing a button in AS3. I want to use the same maker so a toggle button would be best a sort of if a + b are true then ...
0
votes
1answer
79 views
Rails - showing comments in a different area
Im trying to create a system which allows athletes to respond to their coaches traing plan, to do this i have allowed the coach to create contentsm however i am using a blogging based system to create ...
1
vote
2answers
46 views
Confused about reading from a file and into a struct within a struct
So I'm trying to write a small piece of code in c++ which will read in a file (of verts, vect normals, vert texture coords and faces (v/vt/vn v/vt/vn v/vt/vn) etc ) and I've lost myself a little bit.
...







