setting.callback.onCheck.html 1.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <div class="apiDetail">
  2. <div>
  3. <h2><span>Function(event, treeId, treeNode)</span><span class="path">setting.callback.</span>onCheck</h2>
  4. <h3>Overview<span class="h3_info">[ depends on <span
  5. class="highlight_green">jquery.ztree.excheck</span> js ]</span></h3>
  6. <div class="desc">
  7. <p></p>
  8. <div class="longdesc">
  9. <p>Used to capture the check or uncheck event when check or uncheck the checkbox and radio.</p>
  10. <p class="highlight_red">If you set 'setting.callback.beforeCheck',and return false, zTree will not
  11. change check state, and will not trigger the 'onCheck' callback.</p>
  12. <p>Default: null</p>
  13. </div>
  14. </div>
  15. <h3>Function Parameter Descriptions</h3>
  16. <div class="desc">
  17. <h4><b>event</b><span>js event Object</span></h4>
  18. <p>event Object</p>
  19. <h4 class="topLine"><b>treeId</b><span>String</span></h4>
  20. <p>zTree unique identifier: <b class="highlight_red">treeId</b>.</p>
  21. <h4 class="topLine"><b>treeNode</b><span>JSON</span></h4>
  22. <p>JSON data object of the node which is checked or unchecked</p>
  23. </div>
  24. <h3>Examples of setting & function</h3>
  25. <h4>1. When check or uncheck the checkbox and radio, alert info about 'tId' and 'name' and 'checked'.</h4>
  26. <pre xmlns=""><code>function myOnCheck(event, treeId, treeNode) {
  27. alert(treeNode.tId + ", " + treeNode.name + "," + treeNode.checked);
  28. };
  29. var setting = {
  30. callback: {
  31. onCheck: myOnCheck
  32. }
  33. };
  34. ......</code></pre>
  35. </div>
  36. </div>