SlickGrid (autoHeight:true) 带分页

发布于 2024-11-09 22:14:09 字数 121 浏览 0 评论 0原文

我正在使用 SlickGrid,我想做的是显示一个没有垂直滚动条的网格,但分页仍然有效。

当我使用选项 autoHeight:true 时,垂直滚动条被删除,但分页被破坏。有什么建议吗?

I'm using SlickGrid and what I'm trying to do is display a my grid without a vertical scrollbar, but with paging still functional.

When I use the option autoHeight:true, the vertical scroll bar is removed but paging is broken. Any suggestions?

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

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

发布评论

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

评论(1

心房的律动 2024-11-16 22:14:09

autoHeight:truepaging 不兼容。

如果我正确理解你的问题,你想在给定页面上一次渲染 25 行,但你的网格太小,无法渲染该页面上的 25 行,因此右侧会出现一个垂直滚动条,你想要摆脱它。

为此,您应该将网格 div 的高度属性设置为一个值,以便您可以准确地看到给定页面上显示的 25 行。例如:

<div id="myGrid" style="height:800px;"></div>

autoHeight:true and paging are incompatible.

If I understand your issue correctly, you want to render, say, 25 rows at a time on a given page, but your grid is too small to render the 25 rows on that page, so a vertical scrollbar appears on the right and you want to get rid of it.

To do so, you should set the height attribute of your grid div to a value that allows you to see exactly the 25 rows that are shown on a given page. For instance:

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