treeNode.isParent.html 1.2 KB

12345678910111213141516171819202122232425262728
  1. <div class="apiDetail">
  2. <div>
  3. <h2><span>Boolean</span><span class="path">treeNode.</span>isParent</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 is the parent node.</p>
  9. <p class="highlight_red">1. When zTree initialize the node data, the node which has children is set to true, otherwise false.</p>
  10. <p class="highlight_red">2. When zTree initialize the node data, if set treeNode.isParent to true, the node will be set to be parent node.</p>
  11. <p class="highlight_red">3. In order to solve the problem of someone make json data, supporting "false", "true" format of the data string.</p>
  12. </div>
  13. </div>
  14. <h3>Boolean Format</h3>
  15. <div class="desc">
  16. <p> true means: the node is parent node.</p>
  17. <p> false means: the node is not parent node.</p>
  18. </div>
  19. <h3>Examples of treeNode</h3>
  20. <h4>1. Judge whether the first selected node is the parent node.</h4>
  21. <pre xmlns=""><code>var treeObj = $.fn.zTree.getZTreeObj("tree");
  22. var sNodes = treeObj.getSelectedNodes();
  23. if (sNodes.length > 0) {
  24. var isParent = sNodes[0].isParent;
  25. }
  26. </code></pre>
  27. </div>
  28. </div>