在 MX DataGrid 中创建 itemrenderer 的新实例
我想为我的数据网格创建项目渲染器的新实例。
为基于列表的控件的每个可见项创建一个 Item Renderer 类 (ListIR) 的实例。
当用户滚动浏览数据网格控件的项目时,项目渲染器实例将被回收,而不是创建新的实例实例。
但我想创建新实例..同时滚动数据网格中的项目。
任何想法如何实现它。
提前致谢 爪哇岛
I want to create new instance of item renderer for my data grid.
A single instance of your Item Renderer class (ListIR) is created for each visible item of the list-based control.
As the user scrolls through the items of a data grid control, Item Renderer instances are recycled rather than creating new instances.
But i would like to create new instance ..while scrollling item in datagrid.
any idea how to achieve it .
thanks in advance
javaamtho
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将列表的
useVirtualLayout
设置为false
。更多信息请参见此处。Set
useVirtualLayout
tofalse
for your list. More information is here.