blob: b516d2b528066336e764944c67740b57b2375cad (
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
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>qooxdoo » Demo</title>
<link type="text/css" rel="stylesheet" href="../../resource/css/layout.css"/>
<!--[if IE]>
<link type="text/css" rel="stylesheet" href="../../resource/css/layout_ie.css"/>
<![endif]-->
<script type="text/javascript" src="../../script/qx.js"></script>
</head>
<body>
<script type="text/javascript" src="../../script/layout.js"></script>
<div id="demoDescription">
<p>This test is using multiple div-Elements</p>
<p>Created with "createElement" and added via "appendChild" to the document.</p>
</div>
<script type="text/javascript">
qx.core.Init.getInstance().defineMain(function()
{
var d = qx.ui.core.ClientDocument.getInstance();
var w;
var v;
for (var i=1; i<=20; i++)
{
for (var j=1; j<=20; j++)
{
var w = document.createElement("div");
w.className = "qx_ui_core_Widget_QxWidgetCore";
w.id = "Auto" + i + "|" + j;
w.style.width = "12px";
w.style.height = "12px";
w.style.position = "absolute";
w.style.left = (20+(12*i)) + "px";
w.style.top = (48+(12*j)) + "px";
v = Math.round(20+(i*j)/2);
w.style.backgroundColor = "rgb(" + v + "," + v + "," + v + ")";
document.body.appendChild(w);
};
};
});
</script>
</body>
</html>
|