控制活动管理员编辑页面上的字段顺序

时间:2011-11-06 01:30:07

标签: ruby-on-rails activeadmin

如何控制字段在活动管理编辑页面上的显示顺序?为了自定义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”会导致无方法错误。

1 个答案:

答案 0 :(得分:4)

只需更改attributes_table中项目的顺序,ActiveAdmin就会使用该订单进行显示。

更新:用于编辑页面...

form do |f|
  f.inputs "Label" do
    f.input :name
    f.input :address1
    # etc
  end
end