setting.edit.drag.next.html 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <div class="apiDetail">
  2. <div>
  3. <h2><span>Boolean / Function(treeId, treeNodes, targetNode)</span><span class="path">setting.edit.drag.</span>next</h2>
  4. <h3>Overview<span class="h3_info">[ depends on <span class="highlight_green">jquery.ztree.exedit</span> js ]</span></h3>
  5. <div class="desc">
  6. <p></p>
  7. <div class="longdesc">
  8. <p>When drag one node to the target node, set whether to allow the node to be the target node's next sibling. It is valid when <span class="highlight_red">[setting.edit.enable = true]</span></p>
  9. <p class="highlight_red">If the target node is root, so zTree will only trigger 'inner' and not trigger 'prev / next'.</p>
  10. <p class="highlight_red">This function mainly for the appropriate limit drag and drop (auxiliary arrow), it requires a combination of 'prev, inner' together, to achieve full functionality.</p>
  11. <p>Default: true</p>
  12. </div>
  13. </div>
  14. <h3>Boolean Format</h3>
  15. <div class="desc">
  16. <p> true means: allow the node to be the target node's next sibling.</p>
  17. <p> false means: don't allow the node to be the target node's next sibling.</p>
  18. </div>
  19. <h3>Function Parameter Descriptions</h3>
  20. <div class="desc">
  21. <h4><b>treeId</b><span>String</span></h4>
  22. <p>zTree unique identifier: <b class="highlight_red">treeId</b>.</p>
  23. <h4 class="topLine"><b>treeNodes</b><span>Array(JSON)</span></h4>
  24. <p>A collection of the nodes which has been dragged</p>
  25. <h4 class="topLine"><b>targetNode</b><span>JSON</span></h4>
  26. <p>JSON data object of the target node which treeNodes are draged over.</p>
  27. <h4 class="topLine"><b>Return </b><span>Boolean</span></h4>
  28. <p>return true or false</p>
  29. </div>
  30. <h3>Examples of setting & function</h3>
  31. <h4>1. disable to drag the node to the target node's next sibling.</h4>
  32. <pre xmlns=""><code>var setting = {
  33. edit: {
  34. enable: true,
  35. drag: {
  36. prev: true,
  37. next: false,
  38. inner: true
  39. }
  40. }
  41. };
  42. ......</code></pre>
  43. <h4>2. disable to drag the node to be all of the parent nodes's next sibling.</h4>
  44. <pre xmlns=""><code>function canNext(treeId, nodes, targetNode) {
  45. return !targetNode.isParent;
  46. }
  47. var setting = {
  48. edit: {
  49. enable: true,
  50. drag: {
  51. prev: true,
  52. next: canNext,
  53. inner: true
  54. }
  55. }
  56. };
  57. ......</code></pre>
  58. </div>
  59. </div>