Ext給GridPanel上指定的行制定顏色
id: "InventoryGrid",
store: InventoryStore,
sm: sm,
cm: cm,
loadMask: true,
autoScroll: true,
stripeRows: true, //採取grid自動渲染,行列交錯!
columnLines: true,
border: false,
viewConfig: {
//forceFit: true,
columnsText: "顯示/隱藏列",
sortAscText: "正序排列",
sortDescText: "倒序排列",
/*根據條件改變要求行的背景色!
需要在主頁面新建一個css例如:
<style type="text/css">
.my_row_style table{ background:Yellow}
</style>
然後用下面的方法便可以實現了!見API例項
*/
getRowClass: function (record, rowIndex, rowParams, store) {
if (record.data.DayStore <= "50") {
return "my_row_style";
}
}
},