treeNode.isAjaxing.html 997 B

1234567891011121314151617181920212223242526
  1. <div class="apiDetail">
  2. <div>
  3. <h2><span>Boolean</span><span class="path">treeNode.</span>isAjaxing</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>Judge whether the node's child nodes being loaded asynchronously.</p>
  9. <p class="highlight_red">Do not initialize or modify it, it is created by the zTree.</p>
  10. </div>
  11. </div>
  12. <h3>Boolean Format</h3>
  13. <div class="desc">
  14. <p> true means: the node's child nodes is being loaded asynchronously</p>
  15. <p> false means: the node's child nodes is not being loaded asynchronously</p>
  16. </div>
  17. <h3>Examples of treeNode</h3>
  18. <h4>1. Judge whether the first selected node's child nodes being loaded asynchronously</h4>
  19. <pre xmlns=""><code>var treeObj = $.fn.zTree.getZTreeObj("tree");
  20. var sNodes = treeObj.getSelectedNodes();
  21. if (sNodes.length > 0) {
  22. var isAjaxing = sNodes[0].isAjaxing;
  23. }
  24. </code></pre>
  25. </div>
  26. </div>