如何在 jqgrid 的寻呼机中重新定位 rowList 下拉列表?

发布于 2025-01-07 21:08:10 字数 90 浏览 0 评论 0原文

我想将 rowList 下拉列表(定义为 rowList:[10,20,30])重新定位到寻呼机的左侧,而不是默认的右侧位置。这是如何实现的?

谢谢。

I would like to re-position the rowList dropdown (defined as rowList:[10,20,30]) to the left side of the pager rather than the default right-hand side position. How is that achieved?

thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

逆蝶 2025-01-14 21:08:10

我相信 API 是不可能做到这一点的。如果您确实必须这样做,请尝试如下操作:

对于像这样定义的寻呼机,

<div id="grid_pager"></div>

请将其添加到您的 gridComplete 事件

$(' #grid_pager_center tr').prepend(  $(' #grid_pager_center td:last') );

I believe this is not possible with the API. If you really must do this, try something like the following:

For a pager defined like so,

<div id="grid_pager"></div>

Add this to your gridComplete event:

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