Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは、ツリーを作成した後、ダイナツリーからキーを取得したいです。私が使う
$("#tree").dynatree("getTree").persistence.activeKey;
しかし、それはnullを返します
var rootNode = $("#tree").dynatree("getRoot"); alert(rootNode.data.key); var children=rootNode .getChildren() ; for(i=0;i<children.length;i++){ alert("child key:"+children[i].data.key); }