如何限制flex3中datagrid的行数?
我有一个由 3 列和 3 列组成的数据网格。很多行,我只想向用户显示前 20 行。有什么办法可以让我只显示数据网格中的前 20 行。单击“下一步”按钮后,应该显示接下来的 20 行,依此类推...
I have a data grid consisting of 3 columns & many rows, i want to show only the first 20 rows to user. Is there any way i can show only the first 20 rows in my datagrid.After by clicking button 'next', next 20 rows should display and so on...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有一个列表作为数据提供程序(
ArrayCollection
左右),您可以 使用filterFunction
来过滤您的列表。示例代码在这里:
If you have a list as a data provider (
ArrayCollection
or so) you can usefilterFunction
to filter your list.The sample code is here: