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)?

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted
+50

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.

# GET /admin/my_model/page1
collection_action :page1, :method => :get do
  render 'admin/page1'
end

# POST /admin/my_model/page1
collection_action :page1, :method => :post do
  # Do your form processing
  redirect_to test_admin_my_model_path
end

# GET /admin/my_model/page2
collection_action :page2, :method => :get do
  render 'admin/page2'
end

You would then need to create a view at /app/views/admin/page1.html.erb and page2.html.erb

link|improve this answer
feedback

Did you read this documentation ?

http://activeadmin.info/docs/8-custom-actions.html

link|improve this answer
I have -- I've used custom member actions for sidebars but not sure how to use them in order to make an intermediate step. – Hopstream Nov 15 '11 at 15:13
Did you try to rewrite the admin methods of your controller? If you do that, i think you can redirect to a custom method after save for example. – Sebastien Nov 15 '11 at 16:02
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.

link|improve this answer
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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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