tags:

views:

759

answers:

3

I am showing some data in jqgrid and I am using the option “multiselect:true”.In the grid, for a specific row, I want the checkbox not to be show or if it is shown then it should be disabled.Can I do this??I am using jqgrid3.5.2.

Thanks in advance.

A: 

Hi I have the same problem, would appreciate if someone can help. thanks varun

A: 

Every checkbox has uniquie id which is combination of

“jqg_”+rowid – where the rowid is the id of the row.

You can use the following code to make it invisible

$("#jqg_Q391")..css("visibility", "hidden");

Arka Chatterjee
+1  A: 

Simply hide the combo box column with the "hideCol" method :

$("#mygridSelector").jqGrid({
    //myGridOptions...    
}).hideCol('cb');
Brindavoine