On 9 ene, 21:05, Mohamad El-Husseini <[email protected]> wrote: > Started learning Ruby and RoR a couple of days ago and I'm working on a > dummy app. > > I want to allow a user to save 5 records at the same time using a single > form. Let's assume "contact" records, with each one consisting of a single > "name" field. It's a "user has_many contacts" relationship. > > Anyone aware of tutorials/documentation on how to achieve this? I'm having > a hard time modifying the code from a single record into multiple ones. > Chiefly... > > 1- How to display 5 text fields in the form/correct form tag to use. > 2- How to pass an array of those 5 objects to the "create" method (if it's > an array that I should pass) > 3- How to create the instance variable that has the 5 objects in the "new" > method so it's available to the form
Look at these examples http://railscasts.com/episodes/196-nested-model-form-part-1 http://railscasts.com/episodes/197-nested-model-form-part-2 or even you could try nested form gem https://github.com/ryanb/nested_form -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

