Export - rafaellima/rails_admin GitHub Wiki
Section used for the export view.
It inherits its configuration from the base
section.
Specify fields to export
RailsAdmin.config do |config|
config.model 'Highway' do
export do
field :number_of_lanes
end
end
end