如何在不滚动的情况下显示 AdvancedDataGrid 中的所有行?
我有一个 Advanceddatagrid,其变量RowHeight 属性设置为 true。我需要这个 AdvancedDataGrid 也将其verticalScrollBarPolicy“关闭”。
如何显示 AdvancedADataGrid 中的所有行? (需要设置其高度,使其所有行都可见)。
谢谢。
I have an Advanceddatagrid that has its variableRowHeight property set to true. I need this AdvancedDataGrid to have its verticalScrollBarPolicy "off" also.
How can I show all rows in that AdvancedADataGrid? (Need to set its height in a so manner that it will be visible all its rows).
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您的
DataGrid
所在的容器足够高,可以容纳所有行,您可以将rowCount
属性设置为dataProvider
中的记录数代码>.这将显示所有返回的行,没有滚动条。Assuming the container your
DataGrid
is in is tall enough to fit all of the rows, you can set therowCount
property to the number of records in yourdataProvider
. This will show all of the returned rows with no scroll bar.