MVC WebGrid - 如何以编程方式获取当前页面、排序列等
如何以编程方式(在 JavaScript 中)获取 ASP.NET MVC WebGrid 的当前页码、最后一个排序列和排序方向?
是否可以在调用 $("#grid").load()
方法之前更新参数?
How can I programatically (in javascript) get the current page number, last sort column and sort direction of the ASP.NET MVC WebGrid?
Is it possible to update the arguments before it calls the $("#grid").load()
method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
唯一可能的解决方案是使用 jQuery 来检索:
- 从第一列标题中获取页码的“href”属性
- 从“下一页编号”的“href”属性获取排序列和排序方向。
The only possible solution was to use jQuery to retrieve:
- the "href" attribute from the first column header to get the page number and
- the "href" attribute from the "next page number" to get the sort column and sort directions.