2_creation.html 4.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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 current_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"><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="1_files.html" title="Required &amp; optional files">&laquo;&nbsp;Required &#038; optional files</a></li>
  47. <li><a href="../index.html">Up to Reference</a></li>
  48. <li><a href="3_configuration.html" title="Configuration">Configuration&nbsp;&raquo;</a></li>
  49. </ul>
  50. <h2 style="margin-top:25px;">Instance creation</h2>
  51. <div class="entry"><div id="documentation">
  52. <p>There are two ways to instantiate the tree.</p>
  53. <p class="note">NOTE: This only covers versions 0.9.6 and up. For older versions check the documentation included in the download.</p>
  54. <div class="source">Method 1</div>
  55. <pre><span class="pln">$</span><span class="pun">(</span><em><span class="pln">container_node</span></em><span class="pun">).</span><span class="pln">tree</span><span class="pun">([{</span><span class="pln"> </span><em><span class="pln">options</span></em><span class="pln"> </span><span class="pun">}]);</span></pre>
  56. <div class="source">Method 2</div>
  57. <pre><span class="kwd">var</span><span class="pln"> tree </span><span class="pun">=</span><span class="pln"> $</span><span class="pun">.</span><span class="pln">tree_create</span><span class="pun">();</span><span class="pln"><br>tree</span><span class="pun">.</span><span class="pln">init</span><span class="pun">(</span><em><span class="pln">container_node</span></em><span class="pun">,[{</span><span class="pln"> </span><em><span class="pln">options</span></em><span class="pln"> </span><span class="pun">}]);</span></pre>
  58. <ul>
  59. <li>
  60. <span class="req" title="required">[REQ]</span> <span class="var">container_node</span>
  61. <p>A jQuery object or the DOM node of the tree container.</p>
  62. </li>
  63. <li>
  64. <span class="opt" title="optional">[OPT]</span> <span class="var">options</span>
  65. <p>A javascript object containing all the configurations for the tree that are different from the <a href="/documentation/configuration/#defaults">defaults</a>.</p>
  66. </li>
  67. </ul>
  68. </div></div>
  69. </div>
  70. </div>
  71. </div>
  72. </body>
  73. </html>