MvcContrib Grid - 排序时转到第一页

发布于 2024-09-27 00:48:05 字数 102 浏览 5 评论 0原文

我正在将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

羁绊已千年 2024-10-04 00:48:05

您可以向排序操作附加一个附加参数,即 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 to 1. 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)).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文