如何在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?
}
});
答案 0 :(得分:0)
尝试以下css。希望它会对你有所帮助。您不需要在loadComplete
函数中执行任何操作。
#mygrid > tbody > tr:nth-of-type(4){
background: red;
}
Js Fiddle链接:http://jsfiddle.net/yNw3C/12234/
答案 1 :(得分:0)
var tr = $("#myGrid").jqGrid("getInd", secondRowId, true);
$(tr).addClass("subheaderrow");
CSS
.subheaderrow {
background-color: rgb(0,71,124);
color: #fff;
}