Mvc contrib 网格 - 寻呼机
我正在使用 mvc contrib 网格并生成如下所示的寻呼机:
<%= Html.Pager((IPagination)Model) %>
这会生成如下内容:
首先显示 200 中的 11 - 20 |上一页 |下一个 |最后
有没有一种简单的方法可以生成类似这样的显示“相邻页面”的内容:
首先显示 200 个页面中的 11 - 20 个 |上一页 | 1 2 3 4 ... |下一个 |最后
换句话说就是允许用户“跳转页面”。我希望这是有道理的。
谢谢。
基督教
I am using the mvc contrib grid and generate the pager like this:
<%= Html.Pager((IPagination)Model) %>
This produces something like this:
Showing 11 - 20 of 200 first | prev | next | last
Is there a simple way to produce something like this which shows 'neighboring pages':
Showing 11 - 20 of 200 first | prev | 1 2 3 4 ... | next | last
In other words to allow the user to 'jump pages'. I hope this makes sense.
Thanks.
Christian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MVCContrib 的 Pager 不支持此功能。您可以查看这篇博文 示例实现。
MVCContrib's Pager doesn't support this. You could take a look at this blog post for a sample implementation.