I would like to hide the Select All Checkbox in the header, when using multiselect, code below is what I am using.
I have used your method to have a checkbox, but only one row at a time. This works great, but the select-all checkbox at the top can still be selected, which I don’t want.
I have tried several options to hide, but with no luck. Any help is appreciated.
Thanks
MIke
$grid[“multiselect”] = true;
$grid[“beforeSelectRow”] = “function(rowid, e) { if ( jQuery(‘#list1’).jqGrid(‘getGridParam’,’selarrrow’) != rowid) jQuery(‘#list1’).jqGrid(‘resetSelection’); return true; }”;
1 Answers
Your Answer