You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <html>
  2. <head>
  3. <title>IT Mill Toolkit Demo</title>
  4. <link rel="stylesheet" type="text/css" href="styles/demos.css" />
  5. </head>
  6. <body>
  7. <div id="container">
  8. <div id="itmilllogo"><h1>IT Mill Toolkit</h1></div>
  9. <div id="toolkit"></div>
  10. <!--
  11. <h2>IT Mill Toolkit Demo</h2>
  12. -->
  13. <div id="feature-browser">
  14. <h3>Feature Browser</h3>
  15. <div class="option">
  16. <span class="link"><a href="features/?renderingMode=detect">Autodetected mode</a></span>
  17. <span class="desc">Use AJAX if supported by browser, otherwise fallback to HTML mode</span>
  18. </div>
  19. <div class="option">
  20. <span class="link"><a href="features/?renderingMode=ajax">AJAX mode</a></span>
  21. <span class="desc">Select AJAX-based technology mode</span>
  22. </div>
  23. <div class="option">
  24. <span class="link"><a href="features/?renderingMode=html">HTML mode</a></span>
  25. <span class="desc">Select page based request/response technology mode</span>
  26. </div>
  27. </div>
  28. <div id="sample-code">
  29. <h3>IT Mill Toolkit Sample Code</h3>
  30. <h4>Hello World</h4>
  31. <div class="option">
  32. <span class="link"><a href="hello/?renderingMode=detect">Autodetected mode</a></span>
  33. <span class="desc">Use AJAX if supported by browser, otherwise fallback to HTML mode</span>
  34. </div>
  35. <div class="option">
  36. <span class="link"><a href="src/com/itmill/toolkit/demo/HelloWorld.java.html">Source code</a></span>
  37. <span class="desc">See source code how a simple Toolkit application is created</span>
  38. </div>
  39. <h4>Calculator</h4>
  40. <div class="option">
  41. <span class="link"><a href="calc/?renderingMode=detect">Autodetected mode</a></span>
  42. <span class="desc">Use AJAX if supported by browser, otherwise fallback to HTMLmode</span>
  43. </div>
  44. <div class="option">
  45. <span class="link"><a href="src/com/itmill/toolkit/demo/Calc.java.html">Source code</a></span>
  46. <span class="desc">See source code how a simple Toolkit application is created</span>
  47. </div>
  48. </div>
  49. </div><!-- // Container -->
  50. </body>
  51. </html>