1_datasources.html 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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; Examples </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. <link rel="stylesheet" type="text/css" href="../../source/tree_component.css" />
  15. <script type="text/javascript" src="../../source/_lib.js"></script>
  16. <script type="text/javascript" src="../../source/tree_component.js"></script>
  17. </head>
  18. <body>
  19. <div id="container">
  20. <div id="head">
  21. <h1>jsTree</h1>
  22. <h2>javascript tree component</h2>
  23. <h3>Examples</h3>
  24. </div>
  25. <div id="sidebar">
  26. <h3 style="margin-top:0;">Documentation</h3>
  27. <ul>
  28. <li class="page_item"><a href="../_documentation/1_files.html" title="Required &amp; optional files">Required &#038; optional files</a></li>
  29. <li class="page_item"><a href="../_documentation/2_creation.html" title="Instance creation">Instance creation</a></li>
  30. <li class="page_item"><a href="../_documentation/3_configuration.html" title="Configuration">Configuration</a></li>
  31. <li class="page_item"><a href="../_documentation/4_data.html" title="Data sources">Data sources</a></li>
  32. <li class="page_item"><a href="../_documentation/5_customize.html" title="Customization">Customization</a></li>
  33. <li class="page_item"><a href="../_documentation/6_output.html" title="Output">Output</a></li>
  34. <li class="page_item"><a href="../_documentation/7_api.html" title="API">API&nbsp;</a></li>
  35. </ul>
  36. <h3>Examples</h3>
  37. <ul>
  38. <li class="page_item current_page_item"><a href="1_datasources.html" title="Data sources">Data sources</a></li>
  39. <li class="page_item"><a href="2_operations.html" title="Operations">Operations</a></li>
  40. <li class="page_item"><a href="3_callbacks.html" title="Callbacks">Callbacks</a></li>
  41. <li class="page_item"><a href="4_themes.html" title="Themes">Themes</a></li>
  42. <li class="page_item"><a href="5_others.html" title="Others">Other examples</a></li>
  43. <li class="page_item important"><a href="7_full.html" title="Full example">Full PHP &amp; mySQL example&nbsp;</a></li>
  44. </ul>
  45. </div>
  46. <div id="data" style="margin-top:-45px;">
  47. <div id="content">
  48. <ul class='nav'>
  49. <li>&nbsp;</li>
  50. <li><a href="../index.html">Up to Reference</a></li>
  51. <li><a href="2_operations.html" title="Operations">Operations&nbsp;&raquo;</a></li>
  52. </ul>
  53. <h2 style="margin-top:25px;">Data sources</h2>
  54. <div class="entry"><div id="documentation">
  55. <h2>Predefined HTML</h2>
  56. <div id="demo1" class="demo">
  57. <ul>
  58. <li id="phtml_1" class="open"><a href="#">Root node 1</a>
  59. <ul>
  60. <li id="phtml_2"><a href="#" style="background-image:url('../media/images/ok.png');">Custom icon</a></li>
  61. <li id="phtml_3"><a href="#">Child node 2</a></li>
  62. <li id="phtml_4"><a href="#">Some other child node 111</a></li>
  63. </ul>
  64. </li>
  65. <li id="phtml_5"><a href="#">Root node 2</a></li>
  66. </ul>
  67. </div>
  68. <div id="sources1" class="sources">
  69. <pre>
  70. $(function () {
  71. $("#demo1").tree();
  72. });
  73. </pre>
  74. </div>
  75. <script type="text/javascript">
  76. $(function () {
  77. $("#demo1").tree();
  78. });
  79. </script>
  80. <h2>Predefined JSON</h2>
  81. <div id="demo2" class="demo"></div>
  82. <div id="sources2" class="sources">
  83. <pre>
  84. $("#demo2").tree({
  85. data : {
  86. type : "json",
  87. json : [
  88. { attributes: { id : "pjson_1" }, state: "open", data: "Root node 1", children : [
  89. { attributes: { id : "pjson_2" }, data: { title : "Custom icon", icon : "../media/images/ok.png" } },
  90. { attributes: { id : "pjson_3" }, data: "Child node 2" },
  91. { attributes: { id : "pjson_4" }, data: "Some other child node" }
  92. ]},
  93. { attributes: { id : "pjson_5" }, data: "Root node 2" }
  94. ]
  95. }
  96. });
  97. </pre>
  98. </div>
  99. <script type="text/javascript">
  100. $(function () {
  101. $("#demo2").tree({
  102. data : {
  103. type : "json",
  104. json : [
  105. { attributes: { id : "pjson_1" }, state: "open", data: "Root node 1", children : [
  106. { attributes: { id : "pjson_2" }, data: { title : "Custom icon", icon : "../media/images/ok.png" } },
  107. { attributes: { id : "pjson_3" }, data: "Child node 2" },
  108. { attributes: { id : "pjson_4" }, data: "Some other child node" }
  109. ]},
  110. { attributes: { id : "pjson_5" }, data: "Root node 2" }
  111. ]
  112. }
  113. });
  114. });
  115. </script>
  116. <h2>Predefined XML</h2>
  117. <div id="demo3" class="demo"><span style="margin-top:36px; display:block; text-align:center;">Requires webserver</span></div>
  118. <div id="sources3" class="sources">
  119. <pre>
  120. $(function () {
  121. $("#demo3").tree({
  122. data : {
  123. type : "xml_nested", // or "xml_flat"
  124. xml : '&lt;root&gt;&lt;item id="pxml_1" &gt;&lt;content&gt;&lt;name &gt;&lt;![CDATA[Root node 1]]&gt;&lt;/name&gt;&lt;/content&gt;&lt;item id="pxml_2" &gt;&lt;content&gt;&lt;name icon="../media/images/ok.png" &gt;&lt;![CDATA[Custom icon]]&gt;&lt;/name&gt;&lt;/content&gt;&lt;/item&gt;&lt;item id="pxml_3" &gt;&lt;content&gt;&lt;name &gt;&lt;![CDATA[Child node 2]]&gt;&lt;/name&gt;&lt;/content&gt;&lt;/item&gt;&lt;item id="pxml_4" &gt;&lt;content&gt;&lt;name &gt;&lt;![CDATA[Some other child node]]&gt;&lt;/name&gt;&lt;/content&gt;&lt;/item&gt;&lt;/item&gt;&lt;item id="pxml_5" &gt;&lt;content&gt;&lt;name &gt;&lt;![CDATA[Root node 2]]&gt;&lt;/name&gt;&lt;/content&gt;&lt;/item&gt;&lt;/root&gt;'
  125. }
  126. });
  127. });
  128. </pre>
  129. </div>
  130. <script type="text/javascript">
  131. $(function () {
  132. $("#demo3").tree({
  133. data : {
  134. type : "xml_nested",
  135. xml : '<root><item id="pxml_1" ><content><name ><![CDATA[Root node 1]]></name></content><item id="pxml_2" ><content><name icon="../media/images/ok.png" ><![CDATA[Custom icon]]></name></content></item><item id="pxml_3" ><content><name ><![CDATA[Child node 2]]></name></content></item><item id="pxml_4" ><content><name ><![CDATA[Some other child node]]></name></content></item></item><item id="pxml_5" ><content><name ><![CDATA[Root node 2]]></name></content></item></root>'
  136. }
  137. });
  138. });
  139. </script>
  140. <p class="note">NOTE:<br />Predefined xml also works with the <span class="val">"xml_flat"</span> <span class="var">data.type</span> setting.<br /> This example requires a web server, due to loading an XSL file for transforming the string.</p>
  141. <h2>Loading from file</h2>
  142. <div id="demo4" class="demo"><span style="margin-top:36px; display:block; text-align:center;">Requires webserver</span></div>
  143. <div id="sources4" class="sources">
  144. <pre>
  145. $(function () {
  146. $("#demo4").tree({
  147. data : {
  148. type : "xml_flat", // or "xml_nested" or "json"
  149. url : "1_xml_flat.xml"
  150. }
  151. });
  152. });
  153. </pre>
  154. </div>
  155. <script type="text/javascript">
  156. $(function () {
  157. $("#demo4").tree({
  158. data : {
  159. type : "xml_flat",
  160. url : "1_xml_flat.xml"
  161. }
  162. });
  163. });
  164. </script>
  165. <p class="note">NOTE:<br />"From file" also works with the <span class="val">"xml_nested"</span> and <span class="val">"json"</span> <span class="var">data.type</span> setting.<br /> This example requires a web server for loading both the XML and XSL files.<br />When generating an xml file remember to send the <span class="val">text/xml</span> header.</p>
  166. <h2>Using async loading</h2>
  167. <p>The <span class="var">async_data</span> function in this example is not required - it is only included to show how you can modify the params sent to the server.</p>
  168. <div id="demo5" class="demo"><span style="margin-top:36px; display:block; text-align:center;">Requires webserver</span></div>
  169. <div id="sources5" class="sources">
  170. <pre>
  171. $(function () {
  172. $("#demo5").tree({
  173. data : {
  174. type : "json", // or "xml_nested" or "xml_nested"
  175. url : "1_async.php",
  176. async : true,
  177. async_data : function (NODE) { return { id : $(NODE).attr("id") || 0, my_param : "my_value" } }
  178. }
  179. });
  180. });
  181. </pre>
  182. </div>
  183. <script type="text/javascript">
  184. $(function () {
  185. $("#demo5").tree({
  186. data : {
  187. type : "json",
  188. url : "1_async.php",
  189. async : true,
  190. async_data : function (NODE) { return { id : $(NODE).attr("id") || 0, my_param : "my_value" } }
  191. }
  192. });
  193. });
  194. </script>
  195. <p class="note">NOTE:<br />"Async" also works with the <span class="val">"xml_nested"</span> and <span class="val">"xml_flat"</span> <span class="var">data.type</span> setting<br />When using async with <span class="var">"xml_flat"</span> do not set the <span class="val">parent_id</span> xml atttribute.<br /> This example requires a web server for requesting the JSON file.</p>
  196. </div></div>
  197. </div>
  198. </div>
  199. </div>
  200. </body>
  201. </html>