Adobe Flex 4 树 树列表数据
是否可以找到 treeListData 是否有兄弟姐妹。在 adobe Flex 4 和 Actionscript 3 中
Is it possible to find if a treeListData is having a sibling or not. In adobe Flex 4 and actionscript 3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以检查
ItemRenderer
内的TreeListData
实例的item
属性,并且可以:item
作为 < code>ITreeDataDescriptor 并检查hasChildren
属性,item
作为自定义类,并可能检查children
集合的长度(取决于在您的数据模型上)。示例代码:
希望这能回答您的问题。
Yes, you could check the
item
property of theTreeListData
instance inside anItemRenderer
and either:item
asITreeDataDescriptor
and check thehasChildren
propertyitem
as your custom class and possibly check the length of yourchildren
collection (depending on your data-model).Example code:
Hope this answers your question.