我需要根据模型中的 bool 值有条件地格式化单元格值。
我有列col.For(item => item.Detail);
如果项目未完成,我需要应用一些CSS样式
我怎样才能做到这一点?

最佳答案

答案在我对原始帖子的评论中:

http://groups.google.com/group/mvccontrib-discuss/browse_thread/thread/f872d298cc9d53dc

column.For(x => x.Surname).Attributes(x => {
    if(x.Item.Surname == "foo") {
        return new Dictionary<string, object> { { "style", "color:red"} };
    }
    return new Dictionary<string, object>();
});

关于mvccontrib-grid - 基于模型值的MvcContrib网格条件单元格格式化,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4774341/

10-13 06:28