zTreeObj.removeChildNodes.html 1.9 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <div class="apiDetail">
  2. <div>
  3. <h2><span>Function(parentNode)</span><span class="path">zTreeObj.</span>removeChildNodes</h2>
  4. <h3>Overview<span class="h3_info">[ depends on <span
  5. class="highlight_green">jquery.ztree.core</span> js ]</span></h3>
  6. <div class="desc">
  7. <p></p>
  8. <div class="longdesc">
  9. <p>Remove a parent node's child nodes</p>
  10. <p class="highlight_red">1. After remove child nodes, the parent node will become a leaf node. Such as
  11. the need to maintain the parent node is still a parent node, set 'setting.data.keep.parent'
  12. attribute.</p>
  13. <p class="highlight_red">2. Do not use this method to empty the root. If you need to empty the root, you
  14. can initialization zTree, and set the initial nodes is null.</p>
  15. <p class="highlight_red">3. This method does not trigger any callback function.</p>
  16. <p class="highlight_red">Please use zTree object to executing the method.</p>
  17. </div>
  18. </div>
  19. <h3>Function Parameter Descriptions</h3>
  20. <div class="desc">
  21. <h4><b>parentNode</b><span>JSON</span></h4>
  22. <p>The parent node which need to clear its child nodes.</p>
  23. <p class="highlight_red">Please ensure that this data object is an internal node data object in zTree.</p>
  24. <h4 class="topLine"><b>Return </b><span>Array(JSON)</span></h4>
  25. <p>Return the parent node's child nodes which have been removed. If has no child nodes, return null.</p>
  26. </div>
  27. <h3>Examples of function</h3>
  28. <h4>1. Remove the first selected node's child nodes</h4>
  29. <pre xmlns=""><code>var treeObj = $.fn.zTree.getZTreeObj("tree");
  30. var nodes = treeObj.getSelectedNodes();
  31. if (nodes && nodes.length>0) {
  32. treeObj.removeChildNodes(nodes[0]);
  33. }
  34. </code></pre>
  35. </div>
  36. </div>