dataGrid 可否依資料內某欄位條件不同改變整行背景顏色?

$('#dataGridMaster').datagrid({



//設定datagridrow的背景色



rowStyler: function (index, row) {



if (row.FieldName ==
"value") {



return
'background-color:#6293BB;color:#fff;';



}



else {



return
'background-color:red;color:black;';



}}



});



color是字體顏色,如果不需要設定,可以不設。