i want to hide edit/del/save buttons from toolbar but want to keep these buttons in row wise edit/del/save.When i try to hide edit/del/save buttons from toolbar it also hides from row wise editing options. Please Help
Pasting from FAQs.
Q) How to remove toolbar buttons for add/edit dialog and enable only inline editing?
Use following config to remove toolbar buttons, while inline options remain intact. $g is jqgrid() object.
The navgrid settings override set_actions configuration for toolbar.
$g->navgrid["param"]["edit"] = false;
$g->navgrid["param"]["add"] = false;
$g->navgrid["param"]["del"] = false;
Additionally, if you wish to remove search & refresh buttons, here is the code.
$g->navgrid["param"]["search"] = false;
$g->navgrid["param"]["refresh"] = false;