Telerik MVC 网格不适用于单个列设置
我只想将设置应用于单个列,而不是网格中的所有列。我在网格中尝试了以下操作,但不起作用。它默认为无过滤器和无可排序列。
如果我在整个网格上设置了 Filterable 和 Sortable 属性,则它可以正常工作(但对于每一列)。再说一遍,我只想将其应用于单个列。
columns.Bound(o => o.Email).Width(200).Filterable(true).Sortable(true); // this does not work
如何才能做到这一点?我使用的是 2011.2.712.340 版本的控件。
I just want to apply settings to an individual column and not all the columns in the grid. I tried the following in the grid, but doesn't work. It defaults to no filter and no sortable columns.
If i have the Filterable and Sortable properties set on the whole grid, it works fine (for every column though). Again, i just want to apply it for individual columns.
columns.Bound(o => o.Email).Width(200).Filterable(true).Sortable(true); // this does not work
How` can this be accomplished? I'm using version 2011.2.712.340 of the controls.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我“愚弄”它,指出我需要为整个网格设置可过滤和可排序,然后为每列单独打开或关闭这些选项
I "fooled around" with it noting that I need to set filterable and sortable for the entire grid and then individually turn those options on or off for each column