我有 21 行的网格。我的要求是设置一些行的背景颜色为浅绿色(如 1、5、13 行)这是否可以实现。
$("#gridSellIn")
.kendoGrid({
width: 1500,
dataSource: data.d,
resizable: true,
selectable: true,
rowTemplate: kendo.template($("#SellInrowTemplate").html()),
height: 500,
columns: [
{ title: 'RevProduct Name', field: 'ProductName', width: '22%', sortable: true },
{ title: 'Actuals', field: 'Actual', width: '8%', sortable: true },
]
});