Reputation: 506
Hey guys I want to perform batch actions in active admin and I have set the following to true
config.batch_actions = true
in active_admin.rb
Also added selectable_column under the Model's active admin generated file in the index block.
When I click on the top most check box to select all, nothing happens. It just checks that one checkbox. Please let me know of a solution! Thanks!
Upvotes: 0
Views: 1646
Reputation: 1
Make sure to use the latest version of ActiveAdmin from github. This issue has been fixed, but there is no released version yet.
gem 'activeadmin', github: 'gregbell/active_admin'
Upvotes: 0