4_data.html 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. <!DOCTYPE html
  2. PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  3. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  7. <title>jsTree &raquo; Documentation </title>
  8. <link rel="stylesheet" type="text/css" href="../media/style.css" />
  9. <link rel="shortcut icon" href="../media/favicon.ico" />
  10. <link rel="stylesheet" type="text/css" href="../media/prettify.css" />
  11. <script type="text/javascript" src="../media/prettify.js"></script>
  12. <script type="text/javascript" src="../media/iepngfix_tilebg.js"></script>
  13. <script type="text/javascript">window.onload = function() { prettyPrint(); }</script>
  14. </head>
  15. <body>
  16. <div id="container">
  17. <div id="head">
  18. <h1>jsTree</h1>
  19. <h2>javascript tree component</h2>
  20. <h3>Documentation</h3>
  21. </div>
  22. <div id="sidebar">
  23. <h3 style="margin-top:0;">Documentation</h3>
  24. <ul>
  25. <li class="page_item"><a href="1_files.html" title="Required &amp; optional files">Required &#038; optional files</a></li>
  26. <li class="page_item"><a href="2_creation.html" title="Instance creation">Instance creation</a></li>
  27. <li class="page_item"><a href="3_configuration.html" title="Configuration">Configuration</a></li>
  28. <li class="page_item current_page_item"><a href="4_data.html" title="Data sources">Data sources</a></li>
  29. <li class="page_item"><a href="5_customize.html" title="Customization">Customization</a></li>
  30. <li class="page_item"><a href="6_output.html" title="Output">Output</a></li>
  31. <li class="page_item"><a href="7_api.html" title="API">API&nbsp;</a></li>
  32. </ul>
  33. <h3>Examples</h3>
  34. <ul>
  35. <li class="page_item"><a href="../_examples/1_datasources.html" title="Data sources">Data sources</a></li>
  36. <li class="page_item"><a href="../_examples/2_operations.html" title="Operations">Operations</a></li>
  37. <li class="page_item"><a href="../_examples/3_callbacks.html" title="Callbacks">Callbacks</a></li>
  38. <li class="page_item"><a href="../_examples/4_themes.html" title="Themes">Themes</a></li>
  39. <li class="page_item"><a href="../_examples/5_others.html" title="Others">Other examples</a></li>
  40. <li class="page_item important"><a href="../_examples/7_full.html" title="Full example">Full PHP &amp; mySQL example&nbsp;</a></li>
  41. </ul>
  42. </div>
  43. <div id="data" style="margin-top:-45px;">
  44. <div id="content">
  45. <ul class='nav'>
  46. <li><a href="3_configuration.html" title="Configuration">&laquo;&nbsp;Configuration</a></li>
  47. <li><a href="../index.html">Up to Reference</a></li>
  48. <li><a href="5_customize.html" title="Customization">Customization&nbsp;&raquo;</a></li>
  49. </ul>
  50. <h2 style="margin-top:25px;">Data sources</h2>
  51. <div class="entry"><div id="documentation">
  52. <h2>Predefined HTML</h2>
  53. <div class="source">without language versions</div>
  54. <pre>&lt;!-- SINGLE NODE --&gt;
  55. &lt;li id=&quot;<em>node_identificator</em>&quot;&gt;
  56. &lt;a href=&quot;#&quot;&gt;<em>node_title</em>&lt;/a&gt;
  57. &lt;/li&gt;
  58. &lt;!-- NODE WITH CHILDREN --&gt;
  59. &lt;li id=&quot;<em>node_identificator</em>&quot;&gt;
  60. &lt;a href=&quot;#&quot;&gt;<em>node_title</em>&lt;/a&gt;
  61. &lt;ul&gt;
  62. &lt;!-- CHILD NODES --&gt;
  63. &lt;/ul&gt;
  64. &lt;/li&gt;
  65. </pre>
  66. <div class="source">with language versions</div>
  67. <pre>&lt;!-- SINGLE NODE --&gt;
  68. &lt;li id=&quot;<em>node_identificator</em>&quot;&gt;
  69. &lt;a href=&quot;#&quot; class=&quot;<em>language_name</em>&quot;&gt;<em>node_title</em>&lt;/a&gt;
  70. &lt;a href=&quot;#&quot; class=&quot;<em>language_name</em>&quot;&gt;<em>node_title</em>&lt;/a&gt;
  71. &lt;/li&gt;
  72. &lt;!-- NODE WITH CHILDREN --&gt;
  73. &lt;li id=&quot;<em>node_identificator</em>&quot;&gt;
  74. &lt;a href=&quot;#&quot; class=&quot;<em>language_name</em>&quot;&gt;<em>node_title</em>&lt;/a&gt;
  75. &lt;a href=&quot;#&quot; class=&quot;<em>language_name</em>&quot;&gt;<em>node_title</em>&lt;/a&gt;
  76. &lt;ul&gt;
  77. &lt;!-- CHILD NODES --&gt;
  78. &lt;/ul&gt;
  79. &lt;/li&gt;
  80. </pre>
  81. <p class="note">NOTE: if you wish to set a custom icon for a node just use the <span class="var">background-image</span> style property (on the <span class="var">&lt;a&gt;</span> node).</p>
  82. <h2>Nested XML</h2>
  83. <div class="source">WITHOUT language versions</div>
  84. <pre>&lt;xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?&gt;
  85. &lt;root&gt;
  86. &lt;item id=&quot;<em>node_id</em>&quot; [state=&quot;<em>closed|open</em>&quot; <em>hasChildren</em>]&gt;
  87. &lt;content&gt;
  88. &lt;name [icon=&quot;<em>path_to_icon</em>&quot;]&gt;&lt;![CDATA[<em>node_title</em>]]&gt;&lt;/name&gt;
  89. &lt;/content&gt;
  90. &lt;!-- NESTED ITEM NODES --&gt;
  91. &lt;/item&gt;
  92. &lt;/root&gt;
  93. </pre>
  94. <div class="source">WITH language versions</div>
  95. <pre>&lt;xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?&gt;
  96. &lt;root&gt;
  97. &lt;item id=&quot;<em>node_id</em>&quot; [state=&quot;<em>closed|open</em>&quot; <em>hasChildren</em>]&gt;
  98. &lt;content&gt;
  99. &lt;name lang=&quot;<em>language_name</em>&quot; [icon=&quot;<em>path_to_icon</em>&quot;]&gt;
  100. &lt;![CDATA[<em>node_title</em>]]&gt;
  101. &lt;/name&gt;
  102. &lt;name lang=&quot;<em>language_name</em>&quot; [icon=&quot;<em>path_to_icon</em>&quot;]&gt;
  103. &lt;![CDATA[<em>node_title</em>]]&gt;
  104. &lt;/name&gt;
  105. &lt;/content&gt;
  106. &lt;!-- NESTED ITEM NODES --&gt;
  107. &lt;/item&gt;
  108. &lt;/root&gt;
  109. </pre>
  110. <p class="note">NOTE:</p>
  111. <ul class="note">
  112. <li>if the <span class="var">icon</span> attribute (if set) does not contain a <span class="val">"/"</span> the icon is looked up in the current theme directory (so if the icon is in the same folder as the file displaying the tree use <span class="val">"./"</span>)</li>
  113. <li>if the <span class="var">state</span> attribute is present the node is forced in the specified state</li>
  114. <li>if the <span class="var">hasChildren</span> attribute is present, the output node is displayed as having children even if it does not (useful for <span class="var">async</span>)</li>
  115. <li>all other attributes of the <span class="var">item</span> node get copied to the <span class="var">&lt;li&gt;</span> node in the output HTML (for example <span class="var">title</span> or <span class="var">rel</span>)</li>
  116. <li>all attributes (except <span class="var">language</span> and <span class="var">icon</span>) of the <span class="var">name</span> node get copied to the <span class="var">&lt;a&gt;</span> node in the output HTML (for example <span class="var">href</span>)</li>
  117. </ul>
  118. <h2>Flat XML</h2>
  119. <div class="source">WITHOUT language versions</div>
  120. <pre>&lt;xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?&gt;
  121. &lt;root&gt;
  122. &lt;item id=&quot;<em>node_id</em>&quot; parent_id=&quot;<em>parent_node_id</em>&quot; [state=&quot;<em>closed|open</em>&quot; <em>hasChildren</em>]&gt;
  123. &lt;content&gt;
  124. &lt;name [icon=&quot;<em>path_to_icon</em>&quot;]&gt;&lt;![CDATA[<em>node_title</em>]]&gt;&lt;/name&gt;
  125. &lt;/content&gt;
  126. &lt;/item&gt;
  127. &lt;!-- NEXT ITEM NODES --&gt;
  128. &lt;/root&gt;
  129. </pre>
  130. <div class="source">WITH language versions</div>
  131. <pre>&lt;xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot; ?&gt;
  132. &lt;root&gt;
  133. &lt;item id=&quot;<em>node_id</em>&quot; parent_id=&quot;<em>parent_node_id</em>&quot; [state=&quot;<em>closed|open</em>&quot; <em>hasChildren</em>]&gt;
  134. &lt;content&gt;
  135. &lt;name lang=&quot;<em>language_name</em>&quot; [icon=&quot;<em>path_to_icon</em>&quot;]&gt;
  136. &lt;![CDATA[<em>node_title</em>]]&gt;
  137. &lt;/name&gt;
  138. &lt;name lang=&quot;<em>language_name</em>&quot; [icon=&quot;<em>path_to_icon</em>&quot;]&gt;
  139. &lt;![CDATA[<em>node_title</em>]]&gt;
  140. &lt;/name&gt;
  141. &lt;/content&gt;
  142. &lt;/item&gt;
  143. &lt;!-- NEXT ITEM NODES --&gt;
  144. &lt;/root&gt;
  145. </pre>
  146. <p class="note">NOTE:</p>
  147. <ul class="note">
  148. <li>in <span class="var">async</span> mode, do not set the <span class="var">parent_id</span> attribute</li>
  149. <li>if the <span class="var">icon</span> attribute (if set) does not contain a <span class="val">"/"</span> the icon is looked up in the current theme directory (so if the icon is in the same folder as the file displaying the tree use <span class="val">"./"</span>)</li>
  150. <li>if the <span class="var">state</span> attribute is present the node is forced in the specified state</li>
  151. <li>if the <span class="var">hasChildren</span> attribute is present, the output node is displayed as having children even if it does not (useful for <span class="var">async</span>)</li>
  152. <li>all other attributes of the <span class="var">item</span> node get copied to the <span class="var">&lt;li&gt;</span> node in the output HTML (for example <span class="var">title</span> or <span class="var">rel</span>)</li>
  153. <li>all attributes (except <span class="var">language</span> and <span class="var">icon</span>) of the <span class="var">name</span> node get copied to the <span class="var">&lt;a&gt;</span> node in the output HTML (for example <span class="var">href</span>)</li>
  154. </ul>
  155. <h2>JSON</h2>
  156. <div class="source">WITHOUT language versions</div>
  157. <pre>{
  158. attributes: { id : &quot;<em>node_identificator</em>&quot;, [<em>attribute</em> : &quot;<em>attribute_value</em>&quot;] },
  159. state: &quot;closed&quot; or &quot;open&quot;,
  160. data: &quot;<em>node_title</em>&quot;,
  161. children: [ // an array of child nodes objects ]
  162. }
  163. // data can also be in the form
  164. data : { title : &quot;<em>node_title</em>&quot;, icon : &quot;<em>path_to_icon</em>&quot;, attributes : {&quot;<em>key</em>&quot; : &quot;<em>value</em>&quot;, ... } }
  165. </pre>
  166. <div class="source">WITH language versions</div>
  167. <pre>{
  168. attributes: { id : &quot;<em>node_identificator</em>&quot;, [<em>attribute</em> : &quot;<em>attribute_value</em>&quot;] },
  169. state: &quot;closed&quot; or &quot;open&quot;,
  170. data: { &quot;language_name&quot; : &quot;<em>node_title</em>&quot;, &quot;language_name&quot; : &quot;<em>node_title</em>&quot;, ... },
  171. children: [ // an array of child nodes objects ]
  172. }
  173. // each item in the data object can also be in the form
  174. &quot;language&quot; : { title : &quot;<em>node_title</em>&quot;, icon : &quot;<em>path_to_icon</em>&quot;, attributes : {&quot;<em>key</em>&quot; : &quot;<em>value</em>&quot;, ... } }
  175. </pre>
  176. <p class="note">NOTE:</p>
  177. <ul class="note">
  178. <li>if <span class="var">path_to_icon</span> (if set) does not contain a <span class="val">"/"</span> the icon is looked up in the current theme directory (so if the icon is in the same folder as the file displaying the tree use <span class="val">"./"</span>)</li>
  179. <li>if the <span class="var">state</span> property is present the node is forced in the specified state</li>
  180. <li>all members of the <span class="var">attributes</span> object node get copied to the <span class="var">&lt;li&gt;</span> node in the output HTML as attributes (for example <span class="var">title</span> or <span class="var">rel</span>)</li>
  181. <li>all <span class="var">attributes</span> in any <span class="var">data</span> object get copied to the <span class="var">&lt;a&gt;</span> node</li>
  182. </ul>
  183. </div></div>
  184. </div>
  185. </div>
  186. </div>
  187. </body>
  188. </html>