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.
1
vote
1answer
22 views
Get the model instance from within a lambda
I have a nested form that, upon update, creates duplicate entries for all the nested attributes. In order to prevent this, I want to use the reject_if option for accepts_nested_attributes. The code ...
2
votes
3answers
49 views
+50
first_or_create by email and then save the nested model
I two models User and Submission as follows:
class User < ActiveRecord::Base
# Associations
has_many :submissions
accepts_nested_attributes_for :submissions
# Setup accessible (or ...
0
votes
1answer
20 views
Rails SimpleForm with nested models: submission redirects to parent model
I have a User that has_many :recipes. I'm using simple_form, and trying to use a form to create a new recipe. Simple, right? I've looked through a dozen SO questions, and I thought I had fixed all the ...
0
votes
0answers
15 views
Paperclip and nested attributes - not writing to the database
I'm trying to upload multiple files on a form. I followed the rail casts for paperclip and nested attributes, and also this tutorial ...
0
votes
1answer
25 views
rails 3 fields_for nested forms multiple records
Maybe someone here will help me.
I've got the following model vehicle.rb:
class Vehicle < ActiveRecord::Base
attr_accessible :parameters_attributes
has_many :parameters, dependent: :destroy
...
0
votes
0answers
13 views
paperclip polymorphic nested multi file uploads
Not really any error messages, just no file uploaded!
Please help!!!!
everything get created and is fine apart from the file upload.
Models:
class Assets < ActiveRecord::Base
belongs_to ...
0
votes
0answers
33 views
Rails 3.2.11 Paperclip
Rails 3.2.11 Paperclip polymorphic nested attachment, the uploaded images is never saved! Maybe I should add an assets id to every table which requires images?
What would stop paperclip from ...
0
votes
1answer
17 views
Rails: create two nested items in controller but only one shows in the view
Consider the following:
customer.rb
module Refinery
class Customer < Refinery::Core::BaseModel
has_many :users, :class_name => "Refinery::User"
...
0
votes
1answer
22 views
Rails - Creating a model and its nested resources
I'm trying to create a Gallery model and its has_many associations by passing the following to create.
[
{
"title":"Some Titler",
"description":"",
"date":"18-3-2012",
...
0
votes
1answer
20 views
accepts_nested_attributes_for — why is my form deleting instances from my nested model?
I have...
/app/models/survey.rb:
class Survey < ActiveRecord::Base
has_many :results
belongs_to :competitor
after_commit :create_matching_results
attr_accessible :results_attributes
...
0
votes
0answers
28 views
Rails Join table not populated after form submit
I am trying to set up a join table for categories/video-posts called categorizations. It all seems fine however, when the create video_form is submitted, the join table is not populated. So firstly is ...
0
votes
0answers
22 views
Mass Assignment Error with Nested Attributes
I have three models, Contact, Conference and Attendance. The logical requirements are a Contact can attend a Conference and that relationship has specific properties to it (for example their RSVP ...
0
votes
3answers
22 views
How to make simple_form present my nested attributes
survey & result are linked like this:
class Survey < ActiveRecord::Base
has_many :results
accepts_nested_attributes_for :results
end
class Result < ActiveRecord::Base
belongs_to ...
0
votes
1answer
27 views
Rails 'DB - no such column' error for has_many through relationship
I created a has_many :through relationship for a rails app I am creating. However, I am unable have nested attributes for the many to many relationship.
My models are as follows:
article.rb
class ...
0
votes
0answers
15 views
how to validate count of created has_meny association obj., for object their belong_to in ruby on rails 3.2
how to validate count of created has_meny association obj., for object their belong_to
I need a custom validation for max/min count of associated object.
I have Realty, that has
has_many ...
0
votes
2answers
28 views
Couldn't find ArticlesSkill with ID=1 for Article with ID=
I am trying to create an article.
class Article < ActiveRecord::Base
belongs_to :article_skill
attr_accessible :articles_skill_attributes
accepts_nested_attributes_for :articles_skill
end
...
1
vote
2answers
39 views
undefined local variable or method `city' ROR
I created a form using scaffold and then creating Models to make a nested model but I get an error in my browser and I cannot solve it , I am looking for help here, I am getting that error :
...
1
vote
1answer
33 views
Rails ActiveRecord update nested attributes in place
In rails, using update_attributes on a model will create nested models based on association_attributes. Is there an idiomatic way to make it UPDATE the nested models in place?
For example:
...
6
votes
1answer
53 views
has_many nested form with a has_one nested form within it
I am currently trying to make a form for a model, which has a dynamic number of nested models. I'm using Nested Forms (as described in RailsCasts 197). To make things even more complicated, each of ...
0
votes
1answer
36 views
Can't mass-assign protected attributes in multistep form
I'm doing something I thought would be quite simple that's ended up being very complicated. I've followed this Railscasts to create a multistep form. Now I'm trying to nest a form in Order views to ...
0
votes
1answer
37 views
How are parameters passed for nested attributes in Rails?
I have two models, Ingredients and Foods:
class Food < ActiveRecord::Base
belongs_to :user
has_many :ingredients
accepts_nested_attributes_for :ingredients
attr_accessible ...
1
vote
2answers
41 views
How can I use accepts_nested_attributes_for to create > 1 related object in a join table?
I have a very simple design at present, created using Ruby 2.0 and the Rails 4 beta.
I have users, and groups. A User can be a member of multiple groups, and a Group can have multiple users as ...
0
votes
1answer
38 views
RoR wrong number of arguments (0 for 1) form
Hi I'm trying to create a form, that at the same time, creates a list and associates products to it.
The problem is that the form keeps raising
wrong number of arguments (0 for 1)
Extracted ...
0
votes
1answer
41 views
Cannot submit Checkbox through nested form
Im trying to create an application were teachers a able to select students each day who aren't in school. I created the models through nifty-generators gem. The problem is that it wont submit to the ...
0
votes
1answer
31 views
Nested attributes double errors when update
When I have got two models:
Guaranty
accepts_nested_attributes_for :product
belongs_to :product
And model Product:
Product
accepts_nested_attributes_for :guaranties
has_many :guaranties
And 2 ...
0
votes
0answers
36 views
Rails 3 / Active Record - Data modeling strategy for dynamic number of fields in a huge form?
I have a huge form that I am working on - It looks something like this: http://blassdesign.com/temp/screenshot.jpg
As you can see, there is a ton of data there. I already broke up the form into ...
0
votes
1answer
35 views
Ruby on rails 3.2 accepts_nested_attributes validations
I am working on a ruby on rails 3.2 app and I need to validate a form with nested attributes. In my model I had this
class Member
attr_accessible :email, :password.............etc
has_many ...
0
votes
1answer
23 views
Rails accept_nested_attributes still throws “Can't mass-assign protected attributes”
I think I'm either missing something really simple or something really obscure. Hoping someone can spot it for me or explain my muppetry.
Ok, So there are two models, Basket and BasketItem.
I've ...
1
vote
2answers
39 views
Rails nested_forms not displaying fields when dynamically adding extra objects
I'm currently using the nested_forms gem and I'm trying to be able to add multiple landlords to a property.
At the moment the associations are quite deep:
Property -> Landlord -> Contact_Detail -> ...
0
votes
0answers
18 views
When destroying using accepts_nested_attributes fails
So I have a User model which has_many EmailAddresses.
I am using a simple_form_for @user and user accepts_nested_attributes_for :email_addresses for the form to create and destroy these ...
0
votes
1answer
18 views
Can't find my error in accepts_nested_attributes_for syntax
In my Receipt model:
attr_accessible ..., :donor_contacts_attributes
has_many :donor_contacts
accepts_nested_attributes_for :donor_contacts
In my DonorContact model:
belongs_to :receipt
...
0
votes
2answers
70 views
Rails “assign_attributes” not assigning nested models
I have two models with the following structure:
class Wallet < ActiveRecord::Base
include ActiveModel::Validations
has_one :credit_card
accepts_nested_attributes_for :credit_card
...
0
votes
1answer
51 views
Form for many to many associations without using the usual Add and remove, but with checkboxes showing all the choices
suppose I have three models to express the experience of an employee of programing languages,
Language is a master table, which can not be edited by employees, but can only be manipulated by admin ...
0
votes
2answers
64 views
can't set user_id foreign key from the form of another model
I have three Models in a rails app, User, Hikingtrail & Photo. I would like to set the user_id foreign key for a new Photo when a User creates one.
Each User has_many :hikingtrails & ...
1
vote
0answers
45 views
Rails, CanCan nested forms security issue. Read allows to do anything with model
On my site, customer can create some groups and products. Every product is belongs_to group.
Every user can create and update groups, but only which they create themself.
I'm using CanCan gem to ...
1
vote
0answers
27 views
accepts_nested_attributes_for runs before controller method
I'm having a baffling problem. I have a LineItem model that accepts nested attributes for a Trackable and a Product. I am overriding the default trackable_attributes= and product_attributes= methods ...
0
votes
1answer
100 views
Rails 3 fail validation for parent model is validation of nested attributes fail
I have two models, User and House. They have one-to-one association.
class User < ActiveRecord::Base
attr_accessible :name, :house_attributes
has_one :house, :dependent => :destroy
...
0
votes
0answers
72 views
Nested attributes not saving but IDs do
I have been attempting to get a new record to save based on two models with a go through relationship on one form. As of now the code creates the records in the tables with the proper IDs but no ...
1
vote
1answer
75 views
Object [object Object] has no method 'nestedFields' - awesome_nested_fields gem - Rails 3.2 jquery-ui-1.9.2
I have installed this pretty looking gem and have spent the last 2 hours trying to make it work.
I manage to display nested fields within the parent form and create/update records.
However, the ...
2
votes
0answers
50 views
Nested Attributes: unwanted validation despite of reject_if : All_blank
I am new to rails so any advise is greatly appreciated.
I have a class Entry with nested attributes Addresses,
/app/models/entry.rb
class Entry < ActiveRecord::Base
has_many :addresses, ...
0
votes
1answer
32 views
foreign key not updating
I'm developing an app for college where a user can log on & upload details of a hiking trail.
So far everything is working & I have also implemented a nested form for photos in each hiking ...
2
votes
1answer
69 views
PHP: Efficient way to access nested array elements?
I am tidying up some old code i've come across on a job including various arrays which i'd like to combine into nested arrays and would like to know a simple way of looping throught the contents of a ...
0
votes
1answer
73 views
Can't mass-assign protected attributes:: issue while building a nested attribute form
I've spent nearly all day on this particular issue and although there are other posts about it, I've not resolved my particular issue.
I've tried following RailsCast #196 but still can't identify my ...
0
votes
2answers
52 views
Remove nested attribute rails
I have a Post model that
has_many photos
The Post model has
accepts_nested_attributes_for :photos
In my Post edit form i show all the images that are currently associated with the post
<% ...
1
vote
2answers
154 views
If a Rails model has_many children, how do I store the id of the first?
I'm new to Rails, so it's possible I'm overlooking something simple. I have a Rails model called a story. Each story has_many segments, and each segment belongs_to a story. I use the same form to ...
2
votes
2answers
46 views
ActiveRecord::Relation code displaying instead of intended data
I'm trying to display a list of reviews on my home page and at the same time show the ratings for each review.
I want a comma separated list of the different ratings attached to each review (based ...
0
votes
0answers
101 views
Handling nested objects using ember.js
I can't seem to get persisting of nested objects. Nor do I know what the best approach is.
Here is what I have:
My controller:
App.RecipesNewController = Ember.ObjectController.extend({
create: ...
1
vote
1answer
133 views
Customizing Model Validation error messages alerts
I'm trying to customize the error message alert that users see at the top of a form when they input data incorrectly. The error message alert I'm trying to customize are for Model Attributes which ...
1
vote
0answers
53 views
Saving parent object with has_one association to polymorphic child in one go gives error
I'm trying to save a parent object (Report) and the associated polymorphic child (Attachment) in one go - the association is a 'has_one'.
I'm using the '.create' method on the Report with a params ...
0
votes
1answer
67 views
Simple association architecture and implementation in ruby on rails
Quick question about a simple problem I am facing (and I want to use as a way to understand a few things about associations and rails in a deeper level). Here goes:
The two associated models are
...
