How do I set the background color for third row in jqgrid?
$("#mygrid").jqGrid({
url: someUrl,
datatype: 'local',
jsonReader: common.jqgrid.jsonReader(),
mtype: 'POST',
colNames: [//columns names go here],
colModel: [//columns go here
],
loadtext: 'Loading...',
width: 500,
height: 80,
caption: 'Statistics',
loadComplete:function(data) {
//do I set the color here?
}
});