Using jqgrid with multiSelect=\"true\" option. I am disabling rows and prevent its selection based on some flag status as mentioned below
multiSelect=\"true\"
Disable row(s) bas
The checkbox in the header has the id which is combined from the "cb_" prefix and the grid id. So you can hide the element with
var myGrid = $("#list"); $("#cb_"+myGrid[0].id).hide();