Hello,
I want to hide the row with search fields for each column. Can this be done by a grid option? I know there is a column option “$col[“search”] = false;”, but as I understand this has to be done for each column separately.
Kind regards, Rudolf
With set_actions() function, You can disable this row.
$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)
)
);
Hello Abu,
I was too early, sorry. Now that the row has gone the global “Search all columns…” field seems not to work properly – no results. Is there a way to fix this, or to also hide this field?