5

在 Active Admin 中想知道如何使用 2 列设置 config.sort_order,其中第一列来自同一模型,第二列来自关联模型?

ActiveAdmin.register Race do
  menu parent: :races, :label => proc{ I18n.t('activerecord.models.races') }
  belongs_to :meeting, :optional => true
  #need to order by "meetings.date desc races.time desc"
  config.sort_order = "?"



  controller do
    def scoped_collection
      end_of_association_chain.includes(:meeting)
    end
  end

end
4

1 回答 1

-2

config.sort_order将接受多个字段的排序,格式为“ field1_(asc|desc), field2_(asc|desc) ”保留向后兼容性。

请检查此链接以供参考。https://github.com/activeadmin/activeadmin/pull/2432。它可能会解决您的问题。

于 2015-05-19T06:12:42.013 回答