1

我的 cols 被定义为 belwo

x.Bound(y => y.IsStudentIn).Hidden(true);
x.Bound(y => y.Student).ClientTemplate("# if(IsStudentIn== false) {# <span style = \" background-color:red; \"></span>#}#");

如果 IsStudentIn = false,我希望学生单元格变为红色。上面的方法试过了,不行。如何将 css 添加到这个特定的 td

4

1 回答 1

2

这是答案,我联系了telerik以获得答案

x.Bound(y => y.IsStudentIn).Hidden(true);
x.Bound(y => y.Student).ClientTemplate("# 
if(IsStudentIn== false) 
          {#"+ "<div style='background:red;'/>#:Student # </div>" + "# } 
                 else {#" + 
                        "#: Student #" + 
                     "# } #");
于 2014-07-25T17:36:28.810 回答