如何控制字段在活动管理编辑页面上的显示顺序?为了自定义View页面,我用:
更新了admin / model文件ActiveAdmin.register Church do
menu :priority => 2
scope :inactive
scope :unregistered
scope :active
scope :registered
show do
attributes_table :name, :address1, :address2, :city, :state, :zip, :office_phone,
:fax, :email1, :active, :registered
end
但是,将“show”更改为“edit”或“new”会导致无方法错误。
答案 0 :(得分:4)
只需更改attributes_table
中项目的顺序,ActiveAdmin就会使用该订单进行显示。
更新:用于编辑页面...
form do |f|
f.inputs "Label" do
f.input :name
f.input :address1
# etc
end
end