0

我对剑道 UI 很陌生。我正在使用网格控制。

我在选择或更改特定行的背景颜色时遇到问题。谁能帮助我我该怎么做?

我的代码是这样的

@(Html.Kendo().Grid<EmpModel>()                        
     .Name("tgrid")                        
     .Columns(columns =>
           {
             columns.Bound(x => x.EmpId).Width(100).Title("Emp Id");
             columns.Bound(x => x.EmpNameName).Width(100).Title("Emp Name");
             columns.Bound(x => x.Comments).Width(100).Title("Comments”);
           })   

在 ViewData["EmpId"] 我存储了 EmpId。视图数据[“EmpId”] = 110023

当上面的网格被填充时,我想突出显示或选择或展开具有 EmpId 110023 的行。

最好的方法是什么?

在此先感谢参数

在此先感谢参数

4

1 回答 1

0

The question is not clear, please clarify. Basically the uid field of your model contains the unique identifier which is added to each TR automatically by the Grid. If you want to style the columns based on the data check this code library.

于 2013-09-17T16:12:22.840 回答