想要给jqgrid某行设定一个背景颜色,怎么实现
afterGridCompleteFunc="afterCompleteFunction"加载完成进行绑定function afterCompleteFunction(){
//获取列表数据 var rowDatas = $("#CrmCustContract_table").jqGrid('getAllRowDatas'); for(i=0;i<rowDatas.length;i++){ var rowData = rowDatas[i];
if(rowData.recVer=='1'){ //获取每行下的TD更改CSS //第一种写法,crmCustContractId绑定id //$("#"+rowData.crmCustContractId).find("td").css("background-color", "pink"); //第2种写法 $("#"+rowData.crmCustContractId + " td").css("background-color","pink"); //alert($("#"+rowData.crmCustContractId).find("td")[0]); } } return true; }
这个是可以的。很久很久前搞过。