I’m curious if there’s an easy way to re-organize the order of the toolbar icons at the top of the tables. I have some custom buttons, then it shows Reset and then Bulk Edit and I’d love to move the Bulk Edit before the Reset button. I figure this has to be pretty easy but I’m not seeing anything on this.
2 Answers
Please share the grid related code and screenshot of the issue.
Just to log the update, this is doable by:
$opt["bulkedit_options"]["position"] = 4; $g->set_options($opt);
And for custom toolbar button, with position property.
jQuery('#list1').jqGrid('navButtonAdd', '#list1_pager',
{
'id' : 'emailSelected',
'caption' : 'Email Selected',
//...
'position' : 4
});
Your Answer

