$('#tt').datagrid({
rowStyler:function(index,row){
if (row.listprice>50){
return 'color:blue;font-weight:bold;';
}
}
});
2023-07-20 11:58:58
$('#tt').datagrid({
rowStyler:function(index,row){
if (row.listprice>50){
return 'color:blue;font-weight:bold;';
}
}
});