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 添加删除节点的主要内容,如果未能解决你的问题,请参考以下文章