在Kendo Grid中绑定时获取错误复选框

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Kendo Grid中绑定时获取错误复选框相关的知识,希望对你有一定的参考价值。

将Kendo MVC Grid绑定到选择框时出现以下错误。

(44):错误CS1501:方法'Select'没有重载需要0个参数

以下是我的代码:

@{html.Kendo().Grid(Model)
                      .Name("EmpGrid")
                      .Pageable()
                      .Filterable()
                      .DataSource(d => d
                          .Server()
                          .Model(model => model.Id(p => p.empId))
                          .PageSize(25)
                      )
                      .Columns(columns =>
                      {
                         columns.Select();
                         columns.Bound(r => r.Name).Width(160);
                      }).Render();
                } 

请建议我在哪里做错了。

如果我删除“columns.Select();”从列开始工作。

谢谢。

答案

我认为由于剑道旧版本它没有约束力。通过使用如下所示的模板选项完成它。

columns.Template(@<text><input type="checkbox"/></text>).HeaderTemplate(@<text><input type="checkbox" /></text>); columns.Template(@<text><input type="checkbox"/></text>).HeaderTemplate(@<text><input type="checkbox" /></text>);

谢谢

以上是关于在Kendo Grid中绑定时获取错误复选框的主要内容,如果未能解决你的问题,请参考以下文章

Kendo Grid 始终专注于 Top Row 的第一个单元格

根据下拉更改绑定/重新绑定 Kendo Grid

Kendo UI Grid 不会绑定到数据

Kendo UI Web Grid、虚拟滚动和动态复选框

使用复选框选择取消选择 kendo UI Grid 的行

Telerik Kendo Grid 重新绑定问题