1

我有一个弹性树,我有一些文件夹中没有任何子文件夹。

结果是它们显示为叶项。有什么办法可以避免这种情况并让它们显示为文件夹?他们也不应该显示打开/关闭图标。

<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"/>

任何帮助将不胜感激。

4

1 回答 1

0

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

于 2012-11-15T15:59:19.983 回答