zvik2004
(Zvik2004)
1
Hi,
When you need to have a form that modifies an active record, you use the active record as the model and pass it to the view.
In my application, I need to modify more than one active records (in the same form).
What is the preferred way to do this?
Thanks!
sidewinder
(Adam Klosiu)
2
I usually pass 2 models to my view
. In controller you can validate them both, and if both are ok then save.
zvik2004
(Zvik2004)
4
Thank you both for the fast and great answer 