Enables you search on specific fields:
- string, text, integer and boolean columns
- multiple condtions: AND / OR
Add the following to your application.rb (or application_controller.rb for rails > 2.3)
ActiveScaffold.set_defaults do |conf|
conf.actions.exclude :search
conf.actions.add :advanced_search
end
This will activate the advanced search plugin for all your controllers.
Ofcourse, you can also do this only for a specific controller.
- search on date columns
- grouping of AND / OR conditions