MvcConrib Grid 的 Sortable 属性似乎没有任何效果
我需要一种方法来生成网格中的标题文本作为排序链接。
我是否需要使用自定义渲染器才能获得此行为?
I need a way to generate the header texts in the grid as sortalbe link.
Do I need to use custom renderer to get this behavior?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 GridSortOptions 并在网格上调用 .Sort(YourModel.GridSortOptions) 方法,然后在控制器操作中处理 OrderBy。
请参阅此链接:http://www .jeremyskinner.co.uk/2010/03/14/mvccontrib-grid-part-6-sorting/
谢谢哈尔
You need to use GridSortOptions and call the .Sort(YourModel.GridSortOptions) method on the grid and then handle the OrderBy in your controller action.
See this link: http://www.jeremyskinner.co.uk/2010/03/14/mvccontrib-grid-part-6-sorting/
Thanks,
Hal