How to override value that appears in a dropdown in the rails_admin gem
问题 I have a model UserDelegation that contains: belongs_to :delegator, :class_name => 'User'#, :conditions => {:order => 'users.last_name ASC, users.first_name ASC'} belongs_to :delegatee, :class_name => 'User', :touch => true#, :conditions => {:order => 'users.last_name ASC, users.first_name ASC'} and in my user model i have this: has_many :delegatees, :through => :user_delegatees, :order => 'users.last_name ASC, first_name ASC' has_many :delegators, :through => :user_delegators, :order =>