Top "Nested-forms" questions

A form within another form, often in the ruby-on-rails environment.

Rails - How to manage nested attributes without using accepts_nested_attributes_for?

My problem is I've run into limitations of accepts_nested_attributes_for, so I need to figure out how to …

ruby-on-rails nested-forms nested-attributes model-associations update-attributes
Rails has_many through form with checkboxes and extra field in the join model

I'm trying to solve a pretty common (as I thought) task. There're three models: class Product < ActiveRecord::Base validates :…

ruby-on-rails ruby-on-rails-3 forms nested-forms has-many-through
Alternative for accepts_nested_attributes_for - maybe virtus

I'm relatively new to rails and finally found the right way to use accepts_nested_attributes_for. However, there are …

ruby-on-rails ruby nested-forms nested-attributes
Error messages of nested attributes's required field are not displayed

In my case, I have a client who has many tasks (which requires :detail and :completion_date fields.). I've been …

ruby-on-rails nested-forms nested-attributes simple-form-for
multiple image uploads in a nested form with carrierwave

I'm following railscasts episode 381 in an attempt to allow multiple image uploads to my app with the carrierwave gem & …

ruby-on-rails ruby-on-rails-3 carrierwave nested-forms railscasts