在jqgrid中,我可以将寻呼机放在左上角吗

发布于 2024-12-02 16:33:30 字数 135 浏览 3 评论 0原文

使用 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 技术交流群。

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

发布评论

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

评论(1

夜未央樱花落 2024-12-09 16:33:30

要将分页器元素放置在默认情况下位于顶部中心的左上方,您应该隐藏位于左上角位置的 div。

$('#' + grid[0].id + '_toppager_left').hide();

例如,其中 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.

$('#' + grid[0].id + '_toppager_left').hide();

where var grid = $('#list') for example. See the demo:

enter image description here

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.

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