$('#dataGridMaster').datagrid({
//設定datagrid的row的背景色
rowStyler: function (index, row) {
if (row.FieldName ==
"value") {
return
'background-color:#6293BB;color:#fff;';
}
else {
return
'background-color:red;color:black;';
}}
});
color是字體顏色,如果不需要設定,可以不設。