flex树节点类型

时间:2010-09-06 17:56:33

标签: flex flex3 tree itemrenderer

我有一个节点树,我不希望某种类型的节点出现在树中,我可以检查每个特定节点类型的树项渲染器上的数据,所以我有一种我不希望它的类型显示为树节点,就像它不存在一样。

if(this.data.type == TypeEnum.id){
            this.visible=false;
            this.height = 0;
        }
        else {

1 个答案:

答案 0 :(得分:1)

这样的事情怎么样:

public function init(e:Event):void{
   if(this.data.bad==true){
      this.visible=false;
      this.height=0;
      this.width=0;
   }
}

或只添加here

之类的filter函数