3 Answers
Setting search:false, in set_actions will remove that button. See docs for more.
$g->set_actions(array(
"add"=>true, // allow/disallow add
………..
"search" => false
)
);
Your Answer
Setting search:false, in set_actions will remove that button. See docs for more.
$g->set_actions(array(
"add"=>true, // allow/disallow add
………..
"search" => false
)
);