In Active Admin, I would like to know how to configure config.sort_order with two columns, where the first column comes from one model and the second column from a related model?
ActiveAdmin.register Race do menu parent: :races, :label => proc{ I18n.t('activerecord.models.races') } belongs_to :meeting, :optional => true
source share