Dear Sir ,
How I can customize show hide button add , update , delete like this "$g->navgrid["param"] = array("add"=>false, "edit"=>false, "del"=>false);"
in inline mode ?
Thanks Sir
3 Answers
Showhide column dialog is controlled by set_actions function.
$g->set_actions(array(
"add"=>true,
"edit"=>true,
…
"showhidecolumns" => false
)
Thank you Sir , but while I use this syntax
$grid2->set_actions(array(
…..
"inline"=>true ,
….
)
);
button add ,update ,save and cancel appear in toolbar , and is there a way to custom that button?
thanks Sir
Your Answer