RubyOnRails allows you to access attributes of objects associated with the main model, using one, deep hash. Use this tag if you have problem with a model in which you defined `accepts_nested_attributes_for` or if you use nested calls of `fields_for` in a view.
10
votes
4answers
13k views
Getting fields_for and accepts_nested_attributes_for to work with a belongs_to relationship
I cannot seem to get a nested form to generate in a rails view for a belongs_to relationship using the new accepts_nested_attributes_for facility of Rails 2.3. I did check out many of the resources ...
9
votes
3answers
5k views
Rails 3: How does “accepts_nested_attributes_for” work?
Consider the following association:
class Product < ActiveRecord::Base
belongs_to :shop
accepts_nested_attributes_for :shop
end
If
params[:product][:shop_attributes] = {"name" => "My ...
8
votes
4answers
1k views
Ruby on Rails - nested attributes: How do I access the parent model from child model
I have a couple of models like so
class Bill < ActiveRecord::Base
has_many :bill_items
belongs_to :store
accepts_nested_attributes_for :bill_items
end
class BillItem ...
7
votes
6answers
4k views
accepts_nested_attributes_for with has_many => :through Options
I have two models, links and tags, associated through a third, link_tags. The following code is in my Link model.
Associations:
class Link < ActiveRecord::Base
has_many :tags, :through => ...
5
votes
1answer
247 views
How to serialize nested Model in Rails?
I'm having an extremely difficult time figuring out how to serialize the nested attributes of a model in rails. I have a RecipeTemplate which will store an already existing Recipe in it's ...
5
votes
3answers
808 views
rails simple_nested_form_for fields_for wrong number of arguments
So I'm building a form in rails 3.1, using
<%= simple_nested_form_for(@person, :url => collection_url, :html=>{:multipart => true}) do |f| %>
<%= render :partial => "form", ...
5
votes
3answers
2k views
accepts_nested_attributes_for with belongs_to polymorphic
I would like set up a polymorphic relation with accepts_nested_attributes_for. Here is the code:
class Contact <ActiveRecord::Base
has_many :jobs, :as=>:client
end
class Job ...
5
votes
3answers
615 views
Can nested attributes be used in combination with inheritance?
I have the following classes:
Project
Person
Person > Developer
Person > Manager
In the Project model I have added the following statements:
has_and_belongs_to_many :people
...
4
votes
1answer
3k views
WARNING: Can't mass-assign protected attributes
I get this error "WARNING: Can't mass-assign protected attributes: races_attributes"
, when following this http://railscasts.com/episodes/196-nested-model-form-part-1 on rails 3.
Where Races are a ...
3
votes
0answers
70 views
Observer and callback not triggered for accepts_nested_attributes_for
I have a models Topic and Post. Topic has_many :posts.
In Topic model I have also accepts_nested_attributes_for :posts,
Seems that neither observer nor callback is not triggered for Post model when ...
3
votes
1answer
376 views
accepts_nested_attributes_for causing SQLException
I would like to use accepts_nested_attributes_for to create an Article object that has_many Sections.
class Article < ActiveRecord::Base
has_many :sections, :order => "position", :dependent ...
3
votes
3answers
261 views
Validate number of nested attributes
I have a model with nested attributes :
class Foo < ActiveRecord::Base
has_many :bar
accepts_nested_attributes_for :bar
end
It works fine. However I'd want to be sure that for every ...
3
votes
2answers
159 views
How to omit existing child records in a nested form in rails?
In my application an User has many Projects. I want to create a "add many projects" form, so the User can create many Projects at once.
It seemed to me that the quickest way was to make a User form ...
3
votes
4answers
2k views
Ruby on rails - nested attributes: How to do a find or create of the nested model
I have a Bill model with nested Customer model.
The Customer model has a phone number with a uniqueness validation on it.
While creating the bill I want to fetch the existing record based on the phone ...
2
votes
1answer
23 views
one-to-many form with checkboxes
I have a one to many relationship between Admins and Users.
Admin has_many :users
Admin accepts_nested_attributes_for :users
User belongs_to :admin
I'd like the admin edit form to include a list ...
2
votes
1answer
24 views
How to specify fields to set for accepts_nested_attributes_for in ActiveRecord
I have something like:
class Profile < ActiveRecord::Base
belongs_to :user
delegate :full_name, :to => :user
accepts_nested_attributes_for :user
.......
This work fine as I ...
2
votes
1answer
134 views
Updating child-records with their parents' attrs on create?
In Rails, how can you update a child record with values from its parent before either the child or parent are saved?
I'm using Rails' nested attributes to create a parent record with many children. ...
2
votes
1answer
67 views
Additional, non-Paperclip attribute ignores when updating model via accepts_nested_attributes_for
I have a model, "Update" which has_many "Assets". An Asset has has_attached_file of :asset, using Paperclip.
I can successfully create multiple assets through my update form (using fields_for), but ...
2
votes
0answers
80 views
association id not getting set using accepts_nested_attributes_for and decent_exposure
When I post a form to create a new inquiry with a child comment (in the app, inquiries can have multiple comments), the comment is not getting built. It works when remove the presence validations. So ...
2
votes
1answer
78 views
Forms for nested objects in Rails
I am having trouble creating a form to edit StudentReferrals. Each Student has some basic information like name/birthday/studentid. In addition to that information, students are referred to take a ...
2
votes
0answers
121 views
Does accepts_nested_attributes_for work with belongs_to?
I have been getting all kinds of conflicting information regarding this basic question, and the answer is pretty crucial to my current problems. So, very simply, in Rails 3, is it allowed or not ...
2
votes
1answer
51 views
Multiple record submit without nesting
I'm sure I'm over thinking this problem, but I can't seem figure out how to simply create and submit multiple records at once. I have a User model and a Prediction model. User has_many predictions, ...
2
votes
2answers
144 views
XSLT Parsing multiple nested children with tag id help
I have the following xml that I need parsed into name/value pairs using XSLT. No matter what I try, I cannot get it right. I know you cannot have a global "counter" to keep track of the batches, but I ...
2
votes
1answer
306 views
Creating test objects in RSpec with FactoryGirl fails with Nested Attributes
I have a Workout model that has many PerformedExercises, which has many PeformedSets. I can't get it to build an object in my test and I am not sure if it's SQLite3, or something else (it works fine ...
2
votes
3answers
310 views
Rails 3 nested attributes: How can I assign a matching record to the parent model instead of creating a new record every time?
Here's the basic setup:
I have an Order model. An Order has one Address and it accepts_nested_attributes_for :address.
I have a basic order form where I ask a user to input her address. This is ...
2
votes
1answer
105 views
Update all data of model in rails
For example we have:
class PublicLibrary < ActiveRecord::Base
has_many :books
end
class Book < ActiveRecord::Base
belongs_to :public_library
end
If we want do update all books in ...
2
votes
2answers
128 views
Nested Attributes not updating
With the following models:
class Location < ActiveRecord::Base
has_many :group_locations
has_many :groups, :through => :group_locations
accepts_nested_attributes_for ...
2
votes
1answer
713 views
Mass assignment warning when using nested attributes with Devise
I'm having trouble with nested attributes and Devise. A similar issue to How do I use nested attributes with the devise model.
As far as I can tell I've got everything set up as recommended here:
...
2
votes
0answers
146 views
Suppress “base” in error text for custom validation of Rails nested attributes
I have the following models:
class Evaluation < ActiveRecord::Base
attr_accessible :product_id, :description, :evaluation_institutions_attributes
has_many :evaluation_institutions, ...
2
votes
2answers
284 views
accepts_nested_attributes_for and second-order associations, nested forms
I have following models with associations:
class Order < ActiveRecord::Base
has_many :guests
has_many :customers, :through => :guests
accepts_nested_attributes_for :customers
end
class ...
2
votes
1answer
411 views
rails accepts_nested_attributes_for and validations… Rails 2.3.11
I have two models
class Group < AR
has_many :permissions
accepts_nested_attributes_for :permissions, :allow_destroy => true
end
class Permission < AR
validates_uniqueness_of :action, ...
2
votes
2answers
131 views
Help with asp.net mvc form with multiple models
I am having a little trouble figuring how to do this.
here's my scenario
A User must create a IncomeDeclaration for his Business.
But an IncomeDeclaration includes many ActivityIncomeDeclarations ...
2
votes
2answers
180 views
saving values using nested_attributes on ruby
I have nested attributes for say comment. The parent class is post.
<% form_for @post do |f| %>
...........
<% f.fields_for :comments do |builder| %>
<%= builder.text_field :name ...
2
votes
2answers
133 views
Error on record creation: nil object instead of array?
I have a Topic that has many Posts, and accepts nested attributes for them. When I create a topic it creates a first post as well.
When Topics#create is called I get a NoMethodError when trying to ...
2
votes
1answer
301 views
Rails STI conditional sub-classing from base class
I'm developing a project where I have an entity which may have two kinds of assets: Pictures and Videos, basically.
Since I want all the assets to be on the same table and a single upload form for ...
2
votes
2answers
397 views
accepts_nested_attributes_for to link to existing record, not create a new one
I have the following models
class Order < AR::Base
has_many :products
accepts_nested_attributes_for :products
end
class Product < AR::Base
belongs_to :order
has_and_belongs_to_many ...
2
votes
2answers
209 views
Possible to eager load associations with nested_attributes?
Just briefly, I have run into a dreaded 2(n) queries problem.
If n = the number of skills in the database, then my characters#edit form will take 2(n) queries to load the page. It will SELECT a ...
2
votes
2answers
77 views
Pseudo-dicts as properties
I have a Python class C which should have two pseudo-dicts a and b. The term pseudo-dicts means that the dictionaries don't actually exist and that they are “recomputed” each time a key is accessed.
...
2
votes
2answers
85 views
Whats the fasted way to extract an array of nested objects from an array of objects in Ruby ?>
I have an array of Elements, and each element has a property :image.
I would like an array of :images, so whats the quickest and least expensive way to achieve this. Is it just iteration over the ...
2
votes
2answers
504 views
Rails: Getting rid of generic “X is invalid” validation errors
I have a sign-up form that has nested associations/attributes whatever you want to call them.
My Hierarchy is this:
class User < ActiveRecord::Base
acts_as_authentic
belongs_to :user_role, ...
2
votes
0answers
442 views
Rails nested attributes with a join model, where one of the models being joined is a new record
I'm trying to build a grid, in rails, for entering data. It has rows and columns, and rows and columns are joined by cells. In my view, I need for the grid to be able to handle having 'new' rows and ...
2
votes
1answer
589 views
Sorting deeply nested attributes in Rails
I want to be able to drag and drag App model which is nested under Category model.
http://railscasts.com/episodes/196-nested-model-form-part-1
Here's the Railscast I've tried to follow.
...
2
votes
1answer
417 views
Rails show view of one model with form for adding one child - nested attributes vs seperate controller vs?
I have a basic two tiered model structure: Articles -> Comments with one Article having many comments.
What is the best way to add a "Add a comment" form to the bottom of the Articles show page?
...
1
vote
3answers
32 views
Nested attributes for belongs_to relationship
I have this Pin Model:
class Pin < ActiveRecord::Base
belongs_to :user
belongs_to :image
accepts_nested_attributes_for :image
attr_accessible :image_attributes
end
I have this Image ...
1
vote
1answer
36 views
Rails 3 Nested Attributes?
I'm a rails newbie, so bare with me on this one... In short, I have an application that tracks services(servers) with IP addresses. What I'm trying to do is set it up so that when I create a new ...
1
vote
2answers
69 views
Why this linq query returns only first attribute?
I have a complicated xml file and in different levels the following part may exist:
<ChrNote>
<note>The appropriate character is:</note>
</ChrNote>
<ChrDef>
...
1
vote
1answer
25 views
accepts_nested_attributes_for not working correctly
I have a work_order model and an odometer model. I am trying to add an odometer reading for each work order, but also need to be able to add odometer readings without associating a work order to it.
...
1
vote
2answers
34 views
Nested attributes in hash representation of a record
I've given up hours of my day trying to accomplish this simple thing in Rails 3.1 with no luck. I've got some models nested 2 levels deep and associated many-to-one with belongs_to/foreign key, like:
...
1
vote
1answer
97 views
why are model relationships a challenge in backbone.js
I've seen the answer regarding changing the toJSON function in backbone to create a nested model
Saving nested objects with Rails, backbone.js, and accepts_nested_attributes_for,
But I'm trying to ...
1
vote
0answers
54 views
ActiveRecord::AssociationTypeMismatch error in nested form
When i submit the form i get an error
ActiveRecord::AssociationTypeMismatch in ClassGroupsController#create
User(#114808470) expected, got Array(#81535960)
What seems to be the problem here? ...