项目渲染器创建完成
我有一个带有自定义项目渲染器的 Spark List 组件。列表的数据提供者 - 具有 8 个元素的数组集合。 为什么 Item Renderer 的创建完成只发生了 7 次?虽然 Array Collection 有 8 个元素,而 List 显示 8 个对象。 所有这些都会导致数据访问(data.myParams)错误。
I have a Spark List component with custom Item Renderer. Data provider for the List - Array Collection with 8 elements.
Why creation complete of Item Renderer occurs only 7 times? Although the Array Collection of 8 elements and the List displays 8 objects.
All this leads to errors in data access (data.myParams).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为 ItemRenderers 是被回收的。您应该重写 itemRenderer 的数据访问器,然后执行您想要的任何操作,因为这是渲染器从列表中获取数据的时刻。
那里:http://help.adobe.com/en_US/flex/using/WS03d33b8076db57b9-23c04461124bbeca597-8000.html
Because ItemRenderers are recycled. You should override the data accessors of your itemRenderer and then perform any action you want, as it is the moment your renderer gets data from the list.
There : http://help.adobe.com/en_US/flex/using/WS03d33b8076db57b9-23c04461124bbeca597-8000.html