MvcContrib Grid - 排序时转到第一页
我正在将 MvcContrib 网格用于 mvc 应用程序。 我已经设置了排序和分页,但是当用户对网格进行排序时,我必须使网格进入第一页。
关于如何做到这一点有什么想法吗?
i am using the MvcContrib grid for an mvc application.
I have set up sorting and paging , but I have to make the grid to go the first page when the user sorts the grid .
Any ideas on how doing that ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以向排序操作附加一个附加参数,即
currentPage
或您在寻呼机中使用的任何用于跟踪当前页面的参数,并在生成此链接时将参数值设置为1
。还要确保在服务器端的排序操作中,对数据源进行分页时指定正确的范围 (.AsPagination(1, PAGE_SIZE)
)。You could append an additional parameter to the sort action which is
currentPage
or whatever you use in your pager to track the current page and when generating this link set the parameter value to1
. Also make sure that on the server side in the sorting action you are specifying the proper range when paging the data source (.AsPagination(1, PAGE_SIZE)
).