如何更改jqgrid分页样式
我想更改 jqgrid 的默认分页。我想要如下所示的分页
1 2 3 4 5.. Next
默认支持吗?我怎样才能做到这一点?
谢谢,
I want to change default pagination of jqgrid. I want the pagination as given below
1 2 3 4 5.. Next
Is it supported by default? How can i achieve that?
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 wiki 上它说你可以创建自己的自定义寻呼机,你可以看看这个 -> http://www.trirand.com/jqgridwiki/doku.php?id =wiki:寻呼机
On the wiki it says you can create your own custom pager, you might take a look at this -> http://www.trirand.com/jqgridwiki/doku.php?id=wiki:pager
我正在尝试做与你想要的完全相同的事情。
遗憾的是,该结构是硬编码的。您必须通过修改jqgrid源代码来重写
setPager()
函数。我的意思是它不能通过覆盖某些功能来关闭。I'm trying to do exactly same thing you want.
sad to tell, the structure is hard coded. you have to rewrite the
setPager()
function by modifying the jqgrid source code. I mean it can't be down by overwrite some function.