6_output.html 4.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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"><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 current_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="5_customize.html" title="Customization">&laquo;&nbsp;Customization</a></li>
  47. <li><a href="../index.html">Up to Reference</a></li>
  48. <li><a href="7_api.html" title="API">API&nbsp;&raquo;</a></li>
  49. </ul>
  50. <h2 style="margin-top:25px;">Output</h2>
  51. <div class="entry"><div id="documentation">
  52. <p>The output basically follows the structure of the HTML data source:</p>
  53. <pre>
  54. &lt;your-container-node class="tree"&gt;
  55. &lt;ul class="jstree-default jstree-your-theme-name"&gt;
  56. &lt;li class="open|closed|leaf [your-class-names]" [your-attributes="attribute_values"]&gt;
  57. &lt;a
  58. class="language-of-node [your-class-names]"
  59. style="[background-image:url(your-icon-name);] [your-styles]"
  60. [your-attributes="attribute_values"]&gt;Your node name&lt;/a&gt;
  61. &lt;ul&gt;
  62. &lt;!-- CHILD NODES --&gt;
  63. &lt;/ul&gt;
  64. &lt;/li&gt;
  65. &lt;/ul&gt;
  66. &lt;/your-container-node&gt;
  67. </pre>
  68. <p>Your container node get the class <span class="val">tree</span> applied to it. The first <span class="var">&lt;ul&gt;</span> has the class <span class="val">jstree-default</span> and then if different - the name of the theme applied. This ensures that the applied theme's rules override the matching default theme rules.</p>
  69. <p class="note">NOTE that it is not good practice to set the actual <span class="var">&lt;ul&gt;</span> node as the source of the tree (when using predefined HTML).</p>
  70. <p>Each <span class="var">&lt;li&gt;</span> node has one of the classes <span class="val">open</span>, <span class="val">closed</span> or <span class="val">leaf</span>. You can check for those classes in the callback functions, so that you know what node you are dealing with. A <span class="val">leaf</span> node has no children, a <span class="val">closed</span> node has chidren but they are not visible (if there is no <span class="var">&lt;ul&gt;</span> node within this one - the children are not loaded yet), an <span class="val">open</span> node has children, and they are visible.</p>
  71. <p>The count of <span class="var">&lt;a&gt;</span> nodes in each <span class="var">&lt;li&gt;</span> depends on the count of languages for the tree (there is one <span class="var">&lt;a&gt;</span> node for each language, and the node has the language name as a class) (NOTE that only one language is visible at a time). If you do not set the <span class="var">href</span> attribute, a <span class="val">#</span> is set.</p>
  72. </div></div>
  73. </div>
  74. </div>
  75. </div>
  76. </body>
  77. </html>