在jqgrid中,我可以将寻呼机放在左上角吗
使用 jqgrid 时,我发现我可以通过这样做将寻呼机添加到顶部:
toppager: true,
这效果很好,但我想看看是否可以将其对齐到该行的左侧而不是将其放在中间。这可能吗?
when using jqgrid, I see i can add the pager to the top by doing this:
toppager: true,
which works great, but i wanted to see if i can align this to the left of that row instead of putting it in the center. Is this possible ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要将分页器元素放置在默认情况下位于顶部中心的左上方,您应该隐藏位于左上角位置的 div。
例如,其中
var grid = $('#list')
。请参阅演示:另一个旧答案描述了如何在顶部和底部寻呼机之间移动不同的寻呼机元素。 答案提供了一些更一般的信息寻呼机。
To place the pager element left top which is per default at the top center you should just hide the div which is on the top left position.
where
var grid = $('#list')
for example. See the demo:Another old answer describes how you can move different pager elements between the top and the bottom pager. The answer gives some more general information about the pagers.