我有一个显示警报列表的ajax绑定网格。基于行对象中的某些条件,我需要更改行的颜色。
这之前,当我的网格是服务器绑定时(我知道这是它应该工作的方式),但由于更改,网格需要使用ajax更新。
这是我的网格,以及服务器绑定时的工作原理(注意我已更改为.Ajax()
:
@(Html.Kendo().Grid(Model.Alarms)
.Name("grid")
.DataSource(dataSource => dataSource
.Ajax()
.ServerOperation(false)
.Model(m => m.Id(s => s.AlarmComment))
.Read(read => read.Action("Alarms_Read", "Alarms", new { id = Model.ViewUnitContract.Id }).Type(HttpVerbs.Get))
.AutoSync(true)
.ServerOperation(true)
)
.RowAction(row =>
{
if (row.DataItem.DateOff == null && row.DataItem.DateAck == null)
{
row.HtmlAttributes["style"] = "backgrcolor:red";
}
if (row.DataItem.DateOff != null && row.DataItem.DateAck == null)
{
row.HtmlAttributes["style"] = "color: green";
}
if (row.DataItem.DateOff == null && row.DataItem.DateAck != null)
{
row.HtmlAttributes["style"] = "color: blue";
}
})
.Columns(col =>
{
col.Bound(p => p.DateOn).Format("{0:u}").Title("Date");
col.Bound(p => p.Priority).Width(50);
col.Bound(p => p.ExtendedProperty2).Width(100).Title("Action");
col.Bound(p => p.AlarmTag).Title("Name");
col.Bound(p => p.AlarmComment).Title("Comment");
col.Bound(p => p.ExtendedProperty1).Title("AlarmID");
col.Bound(x => x.DateOff).Title("Value");
})
.HtmlAttributes(new {style = "height:430px;"})
.Events(e => e.DataBound("setColors"))
)
现在,这就是我在剧本中所做的事情:
function setColors() {
var grid = $("#grid").data("kendoGrid");
var data = grid.dataSource.data();
$.each(data, function(i, row) {
if (row.DateOff != null && row.DateAck == null) {
// Add color to that rows text
}
});
}
我不能为我的生活找出如何改变那一行文字的颜色。有什么建议吗?
答案 0 :(得分:9)
终于找到了解决方案:
function setColors() {
var grid = $("#grid").data("kendoGrid");
var data = grid.dataSource.data();
grid.tbody.find('>tr').each(function () {
var dataItem = grid.dataItem(this);
if (dataItem.DateOff == null && dataItem.DateAck == null) {
$(this).css('color', 'red');
}
if (dataItem.DateOff != null && dataItem.DateAck == null) {
$(this).css('color', 'green');
}
if (dataItem.DateOff == null && dataItem.DateAck != null) {
$(this).css('color', 'blue');
}
});