Skip to content
This repository has been archived by the owner on Dec 31, 2019. It is now read-only.

Use of search filters

benjaminu edited this page Dec 5, 2012 · 4 revisions

The filtering functionality that is very useful for quickly search through the information from the database - however the search is only built in one way : the individual column filtering.

By default the filtering functionality is disabled, to get it working you just need to activate it from your configuration method like this :
private function _datatable()
{
    return $this->get('datatable')
        //...
        ->setSearch(true);
}