我有一个节点树,我不希望某种类型的节点出现在树中,我可以检查每个特定节点类型的树项渲染器上的数据,所以我有一种我不希望它的类型显示为树节点,就像它不存在一样。
if(this.data.type == TypeEnum.id){
this.visible=false;
this.height = 0;
}
else {
答案 0 :(得分:1)
这样的事情怎么样:
public function init(e:Event):void{
if(this.data.bad==true){
this.visible=false;
this.height=0;
this.width=0;
}
}
或只添加here
之类的filter
函数