弹性树节点类型

发布于 2024-09-17 21:22:11 字数 233 浏览 22 评论 0原文

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

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

i have a tree of nodes that i dont want some type of nodes to appear in the tree, i can check the data on tree item renderer for each specific node type, so i have one type that i dont want it to be shown as tree node, like it doesn't exist.

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

九八野马 2024-09-24 21:22:11

像这样的东西怎么样:

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

或者只是添加一些 filter 函数,例如 此处

how about something like this:

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

or just add some filter function like here

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文