Skip to content

How to modify pagination size

pcreux edited this page Feb 3, 2012 · 2 revisions

To change the items per page for all resources, add the following to config/initializers/active_admin.rb

config.default_per_page = 100

To make changes on a per resource basis, use this:

# increase items per page for pagination
controller do
  before_filter :only => :index do
    @per_page = 100
  end
end