active admin render edit page

前端 未结 2 1571
醉话见心
醉话见心 2020-12-19 09:13

I can easily redirect but I\'d like to do a render the edit page on validation failure so I carry over all the validation methods into the form. I\'m not sure how to render

相关标签:
2条回答
  • 2020-12-19 09:22

    I had a similar issue, but I was overriding the create controller and wanted all the active admin godness for rendering error messaegs. So here is what I did

    controller do
     layout 'active_admin',  :only => [:create,:my_collection_method,:my_member_method]
    
     def create
     //my code here
     end
    end
    

    So basically, i added the 'layout "active_admin" ' line in my controller part and added ALL my custom methods. So the 'my_collection_method' is a custom collection action in the active amdin resource, something like

    :my_collection_action, :method=>:get do
    //my code here
    end
    

    You could try something similar

    0 讨论(0)
  • 2020-12-19 09:33

    Have you tried this?

    render active_admin_template('edit.html.arb'), :layout => false
    
    0 讨论(0)
提交回复
热议问题