javascript - How do I hide all the checkboxes in jQgrid? -
i need hide checkboxes on jqgrid , after read 2 posts:
this did:
// hides first checkbox on header $('#gbox_grid_notification_queue').find('input[type="checkbox"]').hide(); // not hide @ $('#gbox_grid_notification_queue').find('td input[type="checkbox"]').hide(); // not hide anything, same previous 1 var grid_notification_queue = $("#grid_notification_queue"); $("#cb_" + grid_notification_queue.id).hide();
what missing here?
if use free jqgrid fork, solution easy. need add
multiselectposition: "none"
option prevent creating checkboxs. improves additionally performance of multi-selection. remind here can find different options of free jqgrid, has relation selection. value of multiselectposition
"left"
, "right"
or "none"
.
Comments
Post a Comment