Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have a user controller and a user model , in my user table i have limited fields. But now i want to create separate tables for user bank info and user personal info and save through the one form only.How is it possible, i am sure their must be something for this problem?

share|improve this question

2 Answers

up vote 1 down vote accepted

Check how nested_forms works along with the view helpers.

Basically you add this in your user class :

class User < AR
  has_one :profile
  has_one :address
  accepts_nested_attributes_for :profile, :adress
  attr_accessible :name, :email, :profile_attributes, address_attributes #etc
end

and in you form :

=form_for @user do |user_form|
  = user_form.text_field :name
  = user_form.field_for :profile do |profile_form|
    =profile_form.text_field :bank_name
  = user_form.field_for :address do |address_form|
    =address_form.text_field :city
share|improve this answer
can i need to use "attribute => :accessible" method with it – Ravindra Oct 5 '11 at 11:22
yes you can, see my updated answer. Side note : you should not forget to accept/vote on answers, you have a 0% accept rate. cheers – charlysisto Oct 5 '11 at 11:44
Thanks a lot charlysisto it work for two models, but i have to put data i multiple tables for which it look's problematic.Is their any their solution – Ravindra Oct 7 '11 at 8:51
hi ravindra, look at my updated answer to see how to add more – charlysisto Oct 7 '11 at 9:35
i did it earlier and this trick works but doesn't show other models fields.i had tried it two day's ago.Thanks for support – Ravindra Oct 7 '11 at 12:55
show 4 more comments

Look at the Railscast from Ryan Bates.

http://railscasts.com/episodes/196-nested-model-form-part-1

http://railscasts.com/episodes/197-nested-model-form-part-2

share|improve this answer
Yehh i got the same i had in mind ,Thanks damienbrz. – Ravindra Oct 7 '11 at 12:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.