dojo Tree 添加删除节点

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dojo Tree 添加删除节点相关的知识,希望对你有一定的参考价值。

                        var tree=this.tree;
                        var store=tree.model.store;
                        if(this.node){
                            console.log(this.node)
                            var children=this.node.getChildren();
                            for(var i=0;i<children.length;i++){
                                store.deleteItem(children[i].item)
                            }
                            var features=_featureset.features;
                            for(var i=0;i<features.length;i++){
                                console.log(features[i].attributes[field])
                                var tdata={type:"feature",label:features[i].attributes[field],name: features[i].attributes[field],id:features[i]["oid"]+"("+i+")"};  
                                 store.newItem(tdata,{parent:node.item, attribute: ‘children‘});
                            }
                        }

 

以上是关于dojo Tree 添加删除节点的主要内容,如果未能解决你的问题,请参考以下文章

Dojo - Dijit.Tree - 更新树

dojo组件使用---tree组件的局部更新

DOJO:如何更改已删除的节点和后续节点

dojo创建tree

Dojo Gridx 程序刷新显示没有数据

关于jquery tree 树形菜单动态添加子节点的问题