没有 JavaScript 的 GridView 排序?
当“AllowSorting”在 asp.net GridView 上为 true 时,它只会使带有 SortExpression 的标题可单击。
问题是它通过 JavaScript 链接来完成此操作 - 因此在关闭 JS 的情况下,您无法对列进行排序。
在我编写自己的 HeaderTemplate 以使用查询字符串而不是 JavaScript 之前,我是否缺少一种能够在不依赖 JavaScript 的情况下对 GridView 进行排序的更简单方法?
谢谢
BG264
When "AllowSorting" is true on an asp.net GridView, it just makes the headers with a SortExpression clickable.
Trouble is that it does this with JavaScript links - so with JS turned off you cannot sort the columns.
Before I go and write my own HeaderTemplate to use Querystrings instead of JavaScript, am I missing an easier way of being able to sort a GridView without any relyance upon JavaScript?
Thanks
bgs264
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将链接替换为您自己的模板(可以包含按钮),然后在服务器端执行排序。
Replace the links with your own template which can contain buttons and then perform the sorting on the server side.