I had the same problem. The editing page displays instances of objects in the selection menu, for example,
#<Coach:0x00eff180c85c8>
To solve this problem and access these fields, use
form do |f| f.inputs "Coaches" do f.input :name f.input :coach, member_label: Proc.new { |c| "#{c.firstname} #{c.lastname}" end f.actions end
ActiveAdmin uses Formtastic, and the documentation contains more examples.
This stackoverflow answer helped me get this solution.
source share