zTreeObj.updateNode.html 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <div class="apiDetail">
  2. <div>
  3. <h2><span>Function(treeNode, checkTypeFlag)</span><span class="path">zTreeObj.</span>updateNode</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>Update node data. Primarily used to update the node's DOM.</p>
  9. <p class="highlight_red">1. Can update the attributes for display (e.g. 'name', 'target', 'url', 'icon', 'iconSkin', 'checked', 'nocheck'), do not update the other attributes. For example: If you need to expand the node, please use expandNode() method, do not modify the 'open' attribute.</p>
  10. <p class="highlight_red">2. Use updateNode() method of zTree can't trigger 'beforeCheck' or 'onCheck' callback function.</p>
  11. <p class="highlight_red">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 which need to update.</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>checkTypeFlag</b><span>Boolean</span></h4>
  20. <p>checkTypeFlag = true means: According to 'setting.check.chkboxType' attribute automatically check or uncheck the parent and child nodes.</p>
  21. <p>checkTypeFlag = false means: only check or uncheck this node, don't affect its parent and child nodes.</p>
  22. <p class="highlight_red">This parameter is valid when 'setting.check.enable = true' and 'setting.check.chkStyle = "checkbox"'</p>
  23. <p class="highlight_red">Don't affect the parent and child nodes which 'nochecked' attribute is true.</p>
  24. <h4 class="topLine"><b>Return </b><span>none</span></h4>
  25. <p>no return value</p>
  26. </div>
  27. <h3>Examples of function</h3>
  28. <h4>1. Modify the first selected node's name, and update it.</h4>
  29. <pre xmlns=""><code>var treeObj = $.fn.zTree.getZTreeObj("tree");
  30. var nodes = treeObj.getNodes();
  31. if (nodes.length>0) {
  32. nodes[0].name = "test";
  33. treeObj.updateNode(nodes[0]);
  34. }
  35. </code></pre>
  36. </div>
  37. </div>