如何在不滚动的情况下显示 AdvancedDataGrid 中的所有行?

发布于 2024-11-02 19:18:20 字数 177 浏览 3 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(1

悲凉≈ 2024-11-09 19:18:20

假设您的 DataGrid 所在的容器足够高,可以容纳所有行,您可以将 rowCount 属性设置为 dataProvider 中的记录数代码>.这将显示所有返回的行,没有滚动条。

<mx:DataGrid dataProvider="{myDataProvider}" rowCount="{myDataProvider.length}">
  <mx:columns>
    Your columns go here...
  </mx:columns>
</mx:DataGrid>

Assuming the container your DataGrid is in is tall enough to fit all of the rows, you can set the rowCount property to the number of records in your dataProvider. This will show all of the returned rows with no scroll bar.

<mx:DataGrid dataProvider="{myDataProvider}" rowCount="{myDataProvider.length}">
  <mx:columns>
    Your columns go here...
  </mx:columns>
</mx:DataGrid>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文