Is it possible to create a multistep form with ActiveAdmin?
If not, is it possible to just add another page that it redirects to after submitting the form (one that is not the default index, show or form pages)?
|
Is it possible to create a multistep form with ActiveAdmin? If not, is it possible to just add another page that it redirects to after submitting the form (one that is not the default index, show or form pages)?
| |||
|
feedback
|
|
I've been fretting with this issue myself. I found that you can add your own pages using collection actions in your ActiveAdmin file. Say your model is called MyModel, you would add this to your ActiveAdmin my_model.rb file.
You would then need to create a view at /app/views/admin/page1.html.erb and page2.html.erb | ||||
|
feedback
|
|
Did you read this documentation ? | |||||
feedback
|
|
I haven't had to do it within active_admin yet, but I would check out the railscast on multistep forms and combine it with active_admin's collection actions. Essentially, keep it model heavy but have a single custom action that handles the validation, progression, and creation of the model within the form. | |||
|
feedback
|
|
you'll probably want a member action if youre working on a single instance of a model a form would need an action which operates on a single resource http://activeadmin.info/docs/8-custom-actions.html#member_actions | |||
|
feedback
|