Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 MVC4,我希望能够将我的网格绑定到模型并让它在运行时生成列。我以前用 .asp 版本的控件做过这个,我是 Kendo UI 版本的新手。我读到我不应该使用 Telerik 的 MVC 版本,因为它们已经过时了。我已经寻找了一个如何在没有运气的情况下做到这一点的例子。(在他们的网站和谷歌上)
我不必使用 Kendo 网格控件,所以如果有更好的东西可以与 MVC 一起使用,我也很想知道。我最终会想使用一些高级功能,例如详细信息模板。
在此先感谢您的帮助,斯科特
列工厂对象提供了这一点。例如这个:
.Columns(col => { col.Bound(c => c.columnname1); col.Bound(c => c.columnname2); col.Bound(c => c.columnname3); col.Bound(c => c.columnname4); })
会变成这样:
.Columns(col => { col.AutoGenerate(true); })