zTreeObj.getNodes.html 1.1 KB

1234567891011121314151617181920212223242526
  1. <div class="apiDetail">
  2. <div>
  3. <h2><span>Function()</span><span class="path">zTreeObj.</span>getNodes</h2>
  4. <h3>Overview<span class="h3_info">[ depends on <span class="highlight_green">jquery.ztree.core</span> js ]</span></h3>
  5. <div class="desc">
  6. <p></p>
  7. <div class="longdesc">
  8. <p>Get all of the nodes in zTree</p>
  9. <p class="highlight_red">Please use zTree object to executing the method.</p>
  10. </div>
  11. </div>
  12. <h3>Function Parameter Descriptions</h3>
  13. <div class="desc">
  14. <h4><b>Return </b><span>Array(JSON)</span></h4>
  15. <p>return all of the nodes</p>
  16. <p class="highlight_red">1. This array is a collection of the root nodes (the default child nodes are in the 'children' attributes);</p>
  17. <p class="highlight_red">2. Traverse all the nodes need to use recursion, or the use of transformToArray() method make the nodes to be a simple array.</p>
  18. <p class="highlight_red">3. For the asynchronous loading mode, can't get the nodes which are yet loaded.</p>
  19. </div>
  20. <h3>Examples of function</h3>
  21. <h4>1. Get all of the nodes</h4>
  22. <pre xmlns=""><code>var treeObj = $.fn.zTree.getZTreeObj("tree");
  23. var nodes = treeObj.getNodes();
  24. </code></pre>
  25. </div>
  26. </div>