弹性树文件夹的图标

时间:2012-11-15 13:48:47

标签: actionscript-3 flex flex3

我有一个flex树,我有一些没有任何孩子的文件夹。

结果是它们显示为叶子项目。有没有办法避免这种情况,让它们显示为文件夹? 并且它们也不应该显示打开/关闭图标。

<mx:Tree borderThickness="0" defaultLeafIcon="{leafIcon}" folderClosedIcon="{folderClosedIcon}" folderOpenIcon="{folderOpenIcon}" height="100%" id="testTree"
                                     itemClick="test.entityChecked();" itemClose="test.removeEntities(event)" itemOpen="test.addEntityChildren(event)" variableRowHeight="true"
                                     verticalScrollPolicy="off" width="100%" x="0" y="0"/>

任何帮助都会被贬低。

1 个答案:

答案 0 :(得分:0)

您可以使用setItemIcon()强制文件夹正确显示。唯一的事情是你必须创建一个回调来检查树空文件夹,然后相应地设置它。