Mostafa Hussein
Mostafa Hussein

Reputation: 11940

How to Make Nested Form?

I want to make a nested form step by step between two models , has_one The nested form should make me able to choose options from one of the models and save it into the other one

Upvotes: 0

Views: 79

Answers (2)

rony36
rony36

Reputation: 3339

My most favorite tutorial on Nested Form. Here is the railscast tutorials. http://railscasts.com/episodes/196-nested-model-form-part-1

Upvotes: 1

MrYoshiji
MrYoshiji

Reputation: 54882

You can use the method fields_for ;)

See the documentation here:

http://apidock.com/rails/ActionView/Helpers/FormHelper/fields_for

Upvotes: 2

Related Questions