Sha256: a9ef60e2bec4dec322728954ce4e763162f37ec85466bd96aea294485846eb04

Contents?: true

Size: 868 Bytes

Versions: 20

Compression:

Stored size: 868 Bytes

Contents

# Customizing the CSV format

Active Admin provides CSV file downloads on the index screen for each Resource.
By default it will render a CSV file with all the content columns of your
registered model.

Customizing the CSV format is as simple as customizing the index page.

```ruby
ActiveAdmin.register Post do
  csv do
    column :title
    column(:author) { |post| post.author.full_name }
  end
end
```

You can also set custom CSV settings for an individual resource:

```ruby
ActiveAdmin.register Post do
  csv force_quotes: true, col_sep: ';', column_names: false do
    column :title
    column(:author) { |post| post.author.full_name }
  end
end
```

Or system-wide:

```ruby
# config/initializers/active_admin.rb

# Set the CSV builder separator
config.csv_options = { col_sep: ';' }

# Force the use of quotes
config.csv_options = { force_quotes: true }
```

Version data entries

20 entries across 20 versions & 3 rubygems

Version Path
activeadmin_addons-1.1.2 vendor/bundle/ruby/2.3.0/bundler/gems/activeadmin-a5a53c3f2b8f/docs/4-csv-format.md
activeadmin_addons-1.1.1 vendor/bundle/ruby/2.2.0/bundler/gems/activeadmin-a5a53c3f2b8f/docs/4-csv-format.md
yousty-activeadmin-1.0.17.pre docs/4-csv-format.md
yousty-activeadmin-1.0.16.pre docs/4-csv-format.md
activeadmin_addons-1.1.0 vendor/bundle/ruby/2.2.0/bundler/gems/activeadmin-a5a53c3f2b8f/docs/4-csv-format.md
activeadmin_addons-1.0.1 vendor/bundle/ruby/2.2.0/bundler/gems/activeadmin-a5a53c3f2b8f/docs/4-csv-format.md
activeadmin_addons-1.0.0 vendor/bundle/ruby/2.2.0/bundler/gems/activeadmin-a5a53c3f2b8f/docs/4-csv-format.md
yousty-activeadmin-1.0.15.pre docs/4-csv-format.md
yousty-activeadmin-1.0.14.pre docs/4-csv-format.md
yousty-activeadmin-1.0.13.pre docs/4-csv-format.md
yousty-activeadmin-1.0.12.pre docs/4-csv-format.md
yousty-activeadmin-1.0.11.pre docs/4-csv-format.md
yousty-activeadmin-1.0.10.pre docs/4-csv-format.md
yousty-activeadmin-1.0.9.pre docs/4-csv-format.md
yousty-activeadmin-1.0.8.pre docs/4-csv-format.md
activeadmin-1.0.0.pre2 docs/4-csv-format.md
activeadmin-1.0.0.pre1 docs/4-csv-format.md
yousty-activeadmin-1.0.7.pre docs/4-csv-format.md
yousty-activeadmin-1.0.6.pre docs/4-csv-format.md
yousty-activeadmin-1.0.5.pre docs/4-csv-format.md