地铁二期项目正式开始

setting.check.autoCheckTrigger.html 1.4KB

1234567891011121314151617181920212223242526272829
  1. <div class="apiDetail">
  2. <div>
  3. <h2><span>Boolean</span><span class="path">setting.check.</span>autoCheckTrigger</h2>
  4. <h3>Overview<span class="h3_info">[ depends on <span class="highlight_green">jquery.ztree.excheck</span> js ]</span></h3>
  5. <div class="desc">
  6. <p></p>
  7. <div class="longdesc">
  8. <p>When node is automatically checked or unchecked, this parameter used to set to trigger 'beforeCheck / onCheck' callback. It is valid when <span class="highlight_red">[setting.check.enable = true & setting.check.chkStyle = "checkbox"]</span></p>
  9. <p class="highlight_red">1. If you set 'setting.check.chkboxType' to { "Y": "", "N": "" }, will not automatically checked or unchecked.</p>
  10. <p class="highlight_red">2. If you turn on the trigger and there are many more nodes, will affect the performance, because the check or uncheck node can cause many nodes to be automatically checked or unchecked, it will trigger a lot of callbacks, according to the need to decide whether to use this feature.</p>
  11. <p>Default: false</p>
  12. </div>
  13. </div>
  14. <h3>Boolean Format</h3>
  15. <div class="desc">
  16. <p> true means: trigger callback</p>
  17. <p> false means: don't trigger callback</p>
  18. </div>
  19. <h3>Examples of setting</h3>
  20. <h4>1. When node is automatically checked or unchecked, zTree trigger 'beforeCheck / onCheck' callback.</h4>
  21. <pre xmlns=""><code>var setting = {
  22. check: {
  23. enable: true,
  24. autoCheckTrigger: true
  25. }
  26. };
  27. ......</code></pre>
  28. </div>
  29. </div>