Below is my activeadmin object. The form for Venue shows up and a table for the venue contacts shows below it, but there are no action links (edit, relate, unrelate) in the last column of the association table.
ActiveAdmin.register Venue do
association_actions
form :partial => "admin/shared/form"
form_columns :name, :address1, :address2, :city, :state, :zip, :phone, :website
form_associations do
association :venue_contacts do
fields :title, :name, :phone
end
end
end
I have config.aa_associations.autocomplete = false as well.
Below is my activeadmin object. The form for Venue shows up and a table for the venue contacts shows below it, but there are no action links (edit, relate, unrelate) in the last column of the association table.
I have
config.aa_associations.autocomplete = false
as well.