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

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -