我正在我的应用程序中使用活动管理。我遇到了一种情况,我想在默认资源页中添加一个表单和索引。所以我所做的就是,

ActiveAdmin.register Post do
   index do
     column : mycolumn
     panel 'Enter Details' do
       render partial : 'my semantic form'
     end
   end
end

我的语义表单有两个下拉字段和一个提交按钮。单击submit按钮时,必须调用一个操作
 1. Is there a way to display the form elements in expected way
 2. I don't know where to define the form action upon clicking the submit button

最佳答案

我不建议这么做,但如果你真的需要看一看这篇关于adding popup modals to the index page的文章的话。还有一些关于wiki的附加文章。

关于html - 在事件管理资源的索引内使用表单操作呈现自定义表单,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49945057/

10-12 02:42