2016-01-05 141 views
0

Hellow,我想根據條件更改單元格顏色,如果數據庫中有空值的單元格,然後背景顏色發生更改。更改easyui數據網格中的單元格顏色

在easyui教程中,我們可以更改背景顏色行。像這樣:

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

但如何更改單元格顏色?

回答

0
<th field="listprice" formatter="formatListprice">listprice</th> 

function formatListprice(val,row){ 
    if (val > 50){ 
     return '<span style="background-color:pink;color:blue;font-weight:bold;">'+val+'</span>'; 
    } else { 
     return val; 
    } 
}