Anyone deal with this issue or have any thoughts / solutions.
If I have a multi page form using REST, then the first page-form is new.rhtml.
Would I need to create multiple “new / create” actions in the controller ?
I want to take the approach where the user can bail after completing any page, and return later to finish.
???
TIA
Stuart
–
http://en.wikipedia.org/wiki/Dark_ambient
Dark Ambient wrote:
Anyone deal with this issue or have any thoughts / solutions.
If I have a multi page form using REST, then the first page-form is
new.rhtml.
Would I need to create multiple "new / create" actions in the controller ?
I want to take the approach where the user can bail after completing any
page, and return later to finish.
I was thinking (dangerous) but what if each "page" in the form is a
seperate "resource" nested under a main -
map.resources :basicinformation do |basicinformation|
basicinformation.resources :secondgrouping
basicinformation.resources :thirdgrouping
basicinformation.resources :fourthgrouping
..........................
end
Stuart