Advertisement
seatri

jt

Jul 11th, 2015
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>jstree test</title>
  5.  
  6. <style>
  7. html { margin:0; padding:0; font-size:62.5%; }
  8. body { max-width:800px; min-width:300px; margin:0 auto; padding:20px 10px; font-size:14px; font-size:1.4em; }
  9. h1 { font-size:1.8em; }
  10. .demo { overflow:auto; border:1px solid silver; min-height:100px; }
  11. </style>
  12. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.1.1/themes/default/style.min.css" />
  13.  
  14. </head>
  15. <body>
  16. <div id="testtree">
  17. <ul>
  18. <li id="1" title="ID:1"><a>Fruits and Vegetables</a>
  19. <ul>
  20.  
  21. <li id="11" title="ID:11"><a>Fruit</a>
  22. <ul>
  23. <li id="111" title="ID:111"><a>Apple</a></li>
  24. <li id="112" title="ID:112"><a>Banana</a></li>
  25. </ul>
  26. </li>
  27.  
  28. <li id="12" title="ID:12"><a>Vegetables</a>
  29. <ul>
  30. <li id="121" title="ID:121"><a>Zucchini</a></li>
  31. <li id="122" title="ID:122"><a>Tomato</a>
  32. <ul>
  33. <li id="1221" title="ID:1221"><a>Red Tomato</a></li>
  34. <li id="1222" title="ID:1222"><a>Green Tomato</a></li>
  35. </ul>
  36. </li>
  37. </ul>
  38. </li>
  39.  
  40. </ul>
  41. </li>
  42. </ul>
  43. </div>
  44.  
  45. <button>Summary</button>
  46.  
  47. <script src="//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
  48. <script src="https://cdnjs.cloudflare.com/ajax/libs/jstree/3.1.1/jstree.min.js"></script>
  49.  
  50. <script>
  51.  
  52. $(document).ready(function() {
  53.  
  54. $('#testtree').jstree({
  55. 'plugins' : [ "checkbox", "contextmenu", "dnd", "massload", "search", "sort", "state", "types", "unique", "wholerow" ]
  56. });
  57.  
  58. })
  59.  
  60. var button = document.querySelector( "button" );
  61.  
  62. button.addEventListener( "click", function( ev ) {
  63. var id = $("#testtree").jstree("get_selected")
  64. alert( "Your Selection: "+id);
  65. }, false);
  66.  
  67. </script>
  68. </body>
  69. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement