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.
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.
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");
Simply hide the combo box column with the "hideCol" method :
$("#mygridSelector").jqGrid({
//myGridOptions...
}).hideCol('cb');