I\'m using nested_attributes and trying to implement the add/remove fields on-the-fly throu ajax following Ryan Bates screencast about Nested Model (#196)
since I am only going to be showing that one item, do I just have (example) /the_thing/23 or do I still go with the /the_group/1/the_thing/23
Rails noob here. I\'ve been searching on Google and StackOverflow for information in order to get the example used in Railscasts #197 to work but none of the links i\'ve visited work with Rails 3.1!
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
I\'m looking for a w开发者_运维知识库orking tutorial for Rails 3.1 that shows you step-by-step how to create a nested model that\'s 3 levels deep.
I have a nested model structure that looks like this: resources :users, :path => \'/\' do resources :accounts do
My application has 3 models : consultant, project and appointment I am using a nested form with simple_form gem
I have a problem and I don\'t know how to solve it. I\'m using \"nested_form\" gem in classic way so I\'m able to add \"multiple tasks\" to a \"project\" while I\'m creating a \"project\". That\'s no
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
I have a Rails form, where is reported the user and the skills of the user (the association is many to many) so I use accepted_nested resource in the form