The nested-forms tag has no wiki summary.
23
votes
2answers
7k views
Rails nested form with has_many :through, how to edit attributes of join model?
How do you edit the attributes of a join model when using accepts_nested_attributes_for?
I have 3 models: Topics and Articles joined by Linkers
class Topic < ActiveRecord::Base
has_many ...
19
votes
5answers
7k views
Can you nest html forms?
Is it possible to nest html forms? Like so:
<form name="mainForm">
<form name="subForm">
</form>
</form>
So that both forms work? My friend is having problems with ...
16
votes
4answers
4k views
How to add and remove nested model fields dynamically using Haml and Formtastic
We've all seen the brilliant complex forms railscast where Ryan Bates explains how to dynamically add or remove nested objects within the parent object form using Javascript.
Has anyone got any ideas ...
11
votes
1answer
797 views
How does the HTML5 multiple file upload field map to a nested model in Rails 3?
I'm trying to use the HTML5 multiple attribute on a file field in a nested form.
The models are as follows:
class Album < ActiveRecord::Base
has_many :album_images
has_many :images, :through ...
9
votes
3answers
6k views
Nested forms in rails = has_many :confusions :(
I have a user and a profile model. One user can have many profiles. I need to access only one information from the profiles section (viz the phone number) in my user model during the user creation ...
7
votes
2answers
4k views
Three level nested forms in rails using accepts_nested_attributes_for
I've been trying to implement a dynamic multi-model form with accepts_nested_attributes_for in my rails application. I've been following Eloy Duran's complex-forms example that shows a 2 level ...
6
votes
2answers
1k views
validates_uniqueness_of in nested model rails
I have a Project model which accepts nested attributes for Task.
class Project < ActiveRecord::Base
has_many :tasks
accepts_nested_attributes_for
:tasks, :allow_destroy => :true
...
5
votes
1answer
319 views
Error with nested_form gem: wrong number of arguments (4 for 3)
I have been struggling with this one for days and can't seem to figure out what's wrong. I'm attempting to allow polymorphic file attachments to a model Item, which belongs to model Location. My ...
5
votes
3answers
809 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
6answers
3k views
Rails: validate presence of parent_id in has_many association
I have a projects resource that has many tasks. I want to ensure that every task has a project_id by adding validates_presence_of :project_id to the tasks model.
However, when creating a new project ...
5
votes
7answers
3k views
Rails Nested Object Form *_attributes
I'm using Rails 2.3.2, and trying to get a nested object form to work properly. I've narrowed my problem to the issue that Rails is not setting my nested form elements with the *_attributes required ...
4
votes
2answers
558 views
Rails 3.1: Any tutorials for deeply nested models?
I'm looking for a working tutorial for Rails 3.1 that shows you step-by-step how to create a nested model that's 3 levels deep.
The "complex forms" screencasts on RailsCasts doesn't seem to be ...
4
votes
1answer
371 views
Creating a nested model form
I'm trying to build a multi model form - but one of the issues, is I need to link the models within the form.
For example, lets say the form I have has the following models: Users, Profiles
When ...
4
votes
1answer
3k views
fields_for not rendering - rails 3
Finally moved to Rails 3 for a new project and already running into a rookie problem.
Trying to do a simple nested form.
2 models: list and tasks
List model
class List < ActiveRecord::Base
...
4
votes
1answer
2k views
Form with nested attributes with a has_one association not working in Rails 3
I'm tring to set values for two models that have a has_one association using accepts_nested_attributes_for, but nothing in the fields_for is being shown on the view.
I have confirmed the same code ...
4
votes
1answer
2k views
Using Formtastic's semantic_fields_for with a has_many association
I am trying to create a nested form using formtastic. I've included my code below but am running into some problems that I've also listed below. Any suggestions? Thanks.
# Home model
class Home ...
4
votes
1answer
204 views
How to write properly a nested form with a N-N relation
While working on Rails 3 app, I came to the problem of nested forms.
One collection is a set of predefined objects (created with db:seed).
The other collection should show a form to allow to choose a ...
4
votes
1answer
2k views
Rails nested form with nested resource: update belongs_to association when creating new has_many
Hey guys, I've been beating my head against a wall with a particular use case for nested forms (I'm using Rails 2.3.5).
Essentially I have Project and Payment models that looks like this
class ...
4
votes
2answers
828 views
Marking multi-level nested forms as “dirty” in Rails
I have a three-level multi-nested form in Rails. The setup is like this: Projects have many Milestones, and Milestones have many Notes. The goal is to have everything editable within the page with ...
4
votes
3answers
942 views
Need Help with Rails 2.3 Four Level Nested Form Javascript Function
Hi I'm using Alloy's Complex Form Example found here. The example he provides is a two level hierarchy and I'm trying to expand it to four.
He has javascript functions for adding nested items. Can ...
3
votes
2answers
268 views
Rails forms for has_many through association with additional attributes?
How can I generate form fields for a has_many :through association that has additional attributes?
The has_many :through relationship has an additional column called weight.
Here's the migration ...
3
votes
2answers
65 views
Reload calendar into nested forms (rails 3)
I have a form which contains one model (let's call it Model1) and this models accepts nested attributes from another one (let's call it Model2). I want to be able to save many Model2 records, but I ...
3
votes
4answers
613 views
an example of a nested form in simple form?
I am still struggling both writing the controller and the actual form to be able to nest one form in another with an optional model?
I have Message which has many contacts
When submitting a message, ...
3
votes
1answer
321 views
Using awesome_nested_set dynamically adding extra children
I've got a nested model called categories and I have created a nested form to allow creation of a category and sub categories in one form.
This works fine if you pre-build the children in your new ...
3
votes
1answer
139 views
Rails Bug? Grand-children don't save unless parents modified (nested form)
Basically, I have 4 levels of nested forms. A has B has C has D, with D being polymorphic (A also has D). I edit all of them on one form, with javascript to add/remove B, C, and D objects.
The ...
3
votes
3answers
535 views
+100
Validation on a Complex Model for a multi-page form
I'm trying to write a registration using devise and active merchant. The form is complex in that my user object looks like this:
class User < ActiveRecord::Base
include ActiveMerchant::Utils
...
3
votes
2answers
740 views
nested form & update_attributes
i am having trouble updating data in a multi-level nested form. i use partials to include all the fields for both the create & update views, and i do NOT have a problem with creating. only with ...
3
votes
2answers
756 views
nested form & habtm
I am trying to save to a join table in a habtm relationship, but I am having problems.
From my view, I pass in a group id with:
<%= link_to "Create New User", new_user_url(:group => 1) %>
...
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
1answer
1k views
Using accepts_nested_attributes_for + mass assignment protection in Rails
Say you have this structure:
class House < ActiveRecord::Base
has_many :rooms
accepts_nested_attributes_for :rooms
attr_accessible :rooms_attributes
end
class Room < ActiveRecord::Base
...
2
votes
1answer
228 views
How do I get nested_form to work with Formtastic in Rails 3.1?
I have the following form with Formtastic:
= semantic_form_for @user, :url=> url_for(register_path), :html => {:id => "registration_form"} do |f|
= f.inputs :name => "Addresses", ...
2
votes
1answer
93 views
Turning a calendar into a form using Rails?
Question: How do I turn a calendar into a form where the dateselect is rendered to match the calendar day instead of the current date?
What I'm trying to do:
I'd like to create a calendar that ...
2
votes
1answer
65 views
Creating multiple resources with a single model
I have a model called UserPrice and I want to let users be able to create many of the same resources on one form using just the UserPrice model.
Success
Working Code: ( this code will create x ...
2
votes
2answers
136 views
nested_form displays a partial twice
I'm using the gem nested_form in a Rails 3.1 application. The problem is that when I click on the link generated by "link_to_add", it displays the partial twice, whereas it should display it just ...
2
votes
1answer
201 views
nested form, embedded docs, mongoid 2.2.0 problem
I cant seem to find answer for this here or with the google, any help would be awesome.
The Building saves correctly, but the embedded doc PriorityArea doesnt get updated...
I want to eventually have ...
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
1answer
367 views
Nested forms, inline uploads, and progress bars with Carrierwave in Rails
I have rather esoteric usecase for nested forms, multi-file uploads, and progress bars in Rails. I haven't found any online discussions about precisely about this so far. If I have overlooked ...
2
votes
0answers
241 views
Using acts_as_list and nested_form together in Rails 3.1.rc4 app
I originally posted this up as an issue on nested_form but not had any insight. The detail is here: https://github.com/ryanb/nested_form/issues/66
Recap:
I have a slightly unusual requirement ...
2
votes
2answers
125 views
How can I stop a fields_for nested form duplicating with records added?
I have a table of venues and I'm adding offers to each venue using a nested form on the venues edit page. However, each time I add a new offer the fields_for form saves the text entered and creates a ...
2
votes
2answers
309 views
Help with asp.net mvc nested model binding
So I have this demo project almost completely working.
public class Project
{
public int ID { get; set; }
[Required]
public string Name { get; set; }
public ...
2
votes
2answers
81 views
How to build children of a nested form in the controller
I know how to build the 2nd object in a controller but how do you build a third or a fourth?
In my case i need to build 3.
Location - has_many :product_dates, :products
ProductDate - has_many ...
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
242 views
nested form with polymorphic models
I'm making an app with the following attributes, and I'm working on a creating a single form to be able to save a goal, a goal's tasks, a goal's milestones, and a milestone's tasks.
...
2
votes
1answer
101 views
How to create only the field_for object in a nested form
I have a nested form where users can create any amount of products (<%= f.fields_for :products do |product| %>) and at the same time also create a location (nested_form_for @location) to put ...
2
votes
1answer
533 views
rails ancestry nested form
I've just started using Ancestry instead of awesome_nested_set and I would like to create a nested form so that I can create a parent account and many children accounts all in the one form. The ...
2
votes
1answer
436 views
Nested forms with Vaadin / display contents of a collection
I would like to display a complex Java Bean in a Vaadin form so that the user can edit the bean. However the bean consists of simple properties (String, Integer and so on), but also of a collection of ...
2
votes
2answers
120 views
nested forms and one to one relationship
I have a one-to-one relationship between user and goal. I want to build a form that shows the goal of a user. The problem is that my code only works when the user already has a goal defined. The text ...
2
votes
2answers
496 views
Easy way to test nested model forms with Cucumber?
I've got a nested model for Departments within a Hospitals form. The code snippet looks like this:
<%= f.simple_fields_for :hospital do |h| %>
.
.
.
<%= ...
2
votes
1answer
826 views
has_many through nested_form that can build multiply insctance
Have following in my models.
Class Farm < ActiveRecord::Base
has_many :farm_products, :dependent => :destroy
has_many :products, :through => :farm_products
...
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 ...