SlickGrid (autoHeight:true) 带分页
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
autoHeight:true
和paging
不兼容。如果我正确理解你的问题,你想在给定页面上一次渲染 25 行,但你的网格太小,无法渲染该页面上的 25 行,因此右侧会出现一个垂直滚动条,你想要摆脱它。
为此,您应该将网格 div 的高度属性设置为一个值,以便您可以准确地看到给定页面上显示的 25 行。例如:
autoHeight:true
andpaging
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: