aboutsummaryrefslogtreecommitdiffstats
path: root/WebContent/index.html
blob: 2228e22975b062e2aa763435a631fc5393e36445 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<html>
<head>
  <title>IT Mill Toolkit Demo</title>
</head>
<body>

<center>

<h1>IT Mill Toolkit Demo</h1>

<table width="90%" border="1" cellpadding="30px">

<tr><td>
        <h2>Feature Browser</h2>
	<table cellpadding="5px">
	  <tr>
	    <td><a href="features/">Autodetected mode</a></td>
	    <td>Let Toolkit automatically select best user interface
technology.</td>
	  </tr>
	  <tr>
	    <td><a href="features/?renderingMode=ajax">AJAX mode</a></td>
            <td>Force AJAX-based user interface technology.</td>
	  </tr>
	  <tr>
	    <td><a href="features/?renderingMode=ajax&debug=true">AJAX mode with debug</a></td>
            <td>As above but with developer debug window</td>
	  </tr>
	  <tr>
	    <td><a href="features/?renderingMode=html">HTML mode</a></td>
            <td>Force compatible (non-AJAX) user interface technology.</td>
	  </tr>
	  <tr>
	    <td><a
href="features/?renderingMode=html&debug=true">HTML mode with
debug</a></td>
            <td>As above but with developer debug window</td>
	  </tr>
	  <tr>
	    <td><a href="src/com/itmill/toolkit/demo/features/">Open
sources folder</a></td>
          </tr>
	  <tr>
	  <td></td>
	  </tr>
	</table>
</table>

<h1>IT Mill Toolkit Sample Code</h1>

<table width="90%" border="1" cellpadding="30px">

<tr><td>
	<h2>Hello World</h2>
	<ul>
		<li><a href="hello/">HelloWorld application (Autodetected rendering mode)</a></li>
		<li><a href="src/com/itmill/toolkit/demo/HelloWorld.java">Source</li>
	</ul>
</td></tr>

<tr><td>
	<h2>Calculator</h2>
	<ul>
		<li><a href="calc/">Calc application (Autodetected rendering mode)</a></li>
		<li><a href="src/com/itmill/toolkit/demo/Calc.java">Source</li>
	</ul>
</td></tr>

</table>

</center>

</body>
</html>