Hi,
is there an updated way to turn off the ‘search all columns’ ?
I used the following, however, the ‘search all columns’ search box still appears on the grid toolbar:
$g->navgrid[“param”][“search”] = false;
and
$g->set_actions(array(
“add”=>false, // allow/disallow add
“edit”=>false, // allow/disallow edit
“delete”=>false, // allow/disallow delete
“rowactions”=>false, // show/hide row wise edit/del/save option
“showhidecolumns”=>false, // show/hide row wise edit/del/save option
“export”=>true, // show/hide export to excel option
“autofilter” => false, // show/hide autofilter for search
“search” => false // show single/multi field search condition (e.g. simple or advance)
)
);
$g->set_options($opt);
Thanks.
To disable global search on top right, You need to set:
$opt["globalsearch"] = true;