I have a jqgrid and I would set a background color for a row.
....,
gridComplete: function(){
var ids = jQuery("#tabImprese").jqGrid('getDataIDs');
for(var i=0;i < ids.length;i++){
var cl = ids[i];
...........
}
},....
How can I do? Thanks.