zTreeObj.hideNode.html 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <div class="apiDetail">
  2. <div>
  3. <h2><span>Function(treeNode)</span><span class="path">zTreeObj.</span>hideNode</h2>
  4. <h3>Overview<span class="h3_info">[ depends on <span class="highlight_green">jquery.ztree.exhide</span> js ]</span></h3>
  5. <div class="desc">
  6. <p></p>
  7. <div class="longdesc">
  8. <p>To hide any node.</p>
  9. <p class="highlight_red">1. This feature can't support the 'exedit' feature, so please don't use this feature in edit mode.</p>
  10. <p class="highlight_red">2. If you hide or show the nodes, it will effect the 'isFirstNode' and 'isLastNode' attribute.</p>
  11. <p class="highlight_red">3. Please use zTree object to executing the method.</p>
  12. </div>
  13. </div>
  14. <h3>Function Parameter Descriptions</h3>
  15. <div class="desc">
  16. <h4><b>treeNode</b><span>JSON</span></h4>
  17. <p>JSON data object of the node to be hidden</p>
  18. <p class="highlight_red">Please ensure that this data object is an internal node data object in zTree.</p>
  19. <h4 class="topLine"><b>Retrun </b><span>none</span></h4>
  20. <p>no return value</p>
  21. </div>
  22. <h3>Examples of function</h3>
  23. <h4>1. hide the first root node.</h4>
  24. <pre xmlns=""><code>var treeObj = $.fn.zTree.getZTreeObj("tree");
  25. var nodes = treeObj.getNodes();
  26. treeObj.hideNode(nodes[0]);
  27. </code></pre>
  28. </div>
  29. </div>