nested_form icon indicating copy to clipboard operation
nested_form copied to clipboard

Rails plugin to conveniently handle multiple models in a single form.

Results 84 nested_form issues
Sort by recently updated
recently updated
newest added

bug fix: Because removeFields did not remove the required attribute, submit button not work(error: An invalid form control with name='' is not focusable).

![image](https://cloud.githubusercontent.com/assets/526876/12693567/7f825b88-c748-11e5-93b5-3630c6d71f03.png)

## version 0.3.2 ## no support index ``` ``` click `link_to_add` make 1451347938120 next click `link_to_add` make 1451347952296 ### Rails4 support index http://stackoverflow.com/a/22640703/1979953

I have the following models ``` class Item has_many subitems accepts_nested_attributes_for subitems end class Subitem end class Diamond < Subitem end class Gold < Subitem end ``` I want to...

I saw somewhere a one liner to cusomize the form template. How would you do this? The one line was not enough for me to understand what needs to be...

There doesn't seem to ha a way to remove labels. label: false doesn't work along with label:"", yet modifying the label works label: "My New Label".

Since Firefox 29 has started validating number fields, if you remove newly created fields with invalid data, they prevent the form to be submitted even though they are deleted (hidden)...

Hi, I have the following code: ``` .... ``` Everything works as expected: I can add new permissions to new records / existing records, I can remove permissions from existing...