index.html 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4. <title>Mif.Tree Demos</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  6. <link rel="stylesheet" type="text/css" media="screen" href="assets/styles/demos.css" />
  7. <script type="text/javascript" src="../mootools-core-1.3.2-full-nocompat.js"></script>
  8. <script type="text/javascript" src="../mootools-more-1.3.2.1.js"></script>
  9. <script type="text/javascript" src="../mif.tree_for-mt-1.3.2.js"></script>
  10. </head>
  11. <body>
  12. <div id="container">
  13. <div id="title">
  14. <h1><a href=".."><span class="mif-m">M</span><span class="mif-i">i</span><span class="mif-f">f</span><span class="mif-dot">.</span><span class="mif-tree">Tree</span></a> <span>Demos</span></h1>
  15. </div>
  16. <div id="menu"></div>
  17. <div id="demos">
  18. <div id="demos-wrapper">
  19. <ul>
  20. <li><a href="SimpleTree/index.html">Simple Tree</a></li>
  21. <li><a href="Select/index.html">Tree select event demo</a></li>
  22. <li><a href="Toggle/index.html">Tree toggle event demo</a></li>
  23. <li><a href="TreeOtherStyle/index.html">Tree other style</a></li>
  24. <li><a href="changeType/index.html">Add/remove node type demo</a></li>
  25. <li><a href="IconUrl/index.html">set icon using url instead class</a></li>
  26. <li><a href="">File Tree ( left since it requires a webserver )</a></li>
  27. <li><a href="DOMTree/index.html">DOM Tree</a></li>
  28. <li><a href="HTMLTree/index.html">HTML Tree</a></li>
  29. <li><a href="ExpandTo/index.html">Using expandTo property demo</a></li>
  30. <li><a href="Hide/index.html">Hidden property</a></li>
  31. <li><a href="KeyNav/index.html">Key navigation implementation demo</a></li>
  32. <li><a href="CheckboxSimple/index.html">Tree simple checkboxes</a></li>
  33. <li><a href="CheckboxDeps/index.html">Tree dependences checkboxes</a></li>
  34. <li><a href="DragAndDrop/index.html">Tree drag'n'drop</a></li>
  35. <li><a href="DnD/index.html">D'n'd with drop confirmation</a></li>
  36. <li><a href="Rename/index.html">Rename Node</a></li>
  37. <li><a href="SortableTree/index.html">sortable tree</a></li>
  38. <li><a href="AddNode/index.html">Add node</a></li>
  39. <li><a href="AddNode2/index.html">Another add node demo</a></li>
  40. <li><a href="reloadChildren/index.html">reload children and update clicked node name</a></li>
  41. <li><a href="CookieStorage/index.html">cookie storage</a></li>
  42. <li><a href="ProtectedNode/index.html">protected from change node</a></li>
  43. <li><a href="DropConfirm/index.html">Confirm before Drop</a></li>
  44. </ul>
  45. </div>
  46. <div id="footer">
  47. <p>Released under the <a href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0</a> License</p>
  48. </div>
  49. <span class="spc"></span>
  50. </div>
  51. </div>
  52. </body>
  53. </html>