datagrid dojo 中的滚动条
如何去除Dojo Datagrid的水平滚动条?即使我删除了滚动条出现的滚动空间。如何消除?
How to remove the horizontal scroll bar of Dojo Datagrid? Even i remove scroll space for the scroll bar appears. How to eliminate?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以覆盖 dojoxGridScrollbox 的 CSS 以使其具有 Overflow-x:none,但不建议这样做。
或者,您可以将其中一列宽度设置为“自动”而不是固定像素。假设您的网格比您想要显示的数据更宽,这通常会删除滚动条。
You can overwrite the CSS for the dojoxGridScrollbox to have overflow-x:none, but its not recommended.
Alternatively, you could have one of the column widths be "auto" instead of fixed pixel. Assuming your grid is wider than the data you intend to display, this will typically remove the scrollbars.