setting.data.simpleData.enable.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <div class="apiDetail">
  2. <div>
  3. <h2><span>Boolean</span><span class="path">setting.data.simpleData.</span>enable</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>Set zTree's node to accept the simple data format, when zTree is initialized or when ajax get / or when use <span class="highlight_red">addNodes</span> method.</p>
  9. <p>Don't have to generate the complex nested data.</p>
  10. <p>Default: false</p>
  11. </div>
  12. </div>
  13. <h3>Boolean Format</h3>
  14. <div class="desc">
  15. <p> true means: zTree's node accept the simple data format.</p>
  16. <p> false means: zTree's node only accept the nested data format.</p>
  17. <p class="highlight_red">If set it is true, you must set the other attributes in 'setting.data.simpleData'. (e.g., idKey, pIdKey, rootPId) And let the data satisfy the parent-child relationship.</p>
  18. </div>
  19. <h3>Examples of setting</h3>
  20. <h4>1. use the simple data format</h4>
  21. <pre xmlns=""><code>var setting = {
  22. data: {
  23. simpleData: {
  24. enable: true,
  25. idKey: "id",
  26. pIdKey: "pId",
  27. rootPId: 0
  28. }
  29. }
  30. };
  31. var treeNodes = [
  32. {"id":1, "pId":0, "name":"test1"},
  33. {"id":11, "pId":1, "name":"test11"},
  34. {"id":12, "pId":1, "name":"test12"},
  35. {"id":111, "pId":11, "name":"test111"}
  36. ];
  37. ......</code></pre>
  38. </div>
  39. </div>