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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
<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>Tests for qx.ui.form.CheckBox. qx.ui.form.CheckBox extends qx.ui.basic.Atom and so it inherits all the options and properties defined there.</p>
</div>
<script type="text/javascript">
qx.core.Init.getInstance().defineMain(function()
{
var d = qx.ui.core.ClientDocument.getInstance();
var c1 = new qx.ui.form.CheckBox("Send Data to Server", "c1checked", "c1");
with(c1)
{
setTop(48);
setLeft(20);
};
d.add(c1);
var c2 = new qx.ui.form.CheckBox("Delete all Data on Server", "c2checked", "c2");
with(c2)
{
setTop(78);
setLeft(20);
};
d.add(c2);
c2.setChecked(true);
var c3 = new qx.ui.form.CheckBox("Top Checkbox", "c3checked", "c3");
with(c3)
{
setTop(120);
setLeft(20);
setIconPosition("top");
};
d.add(c3);
var c4 = new qx.ui.form.CheckBox("Bottom Checkbox", "c4checked", "c4");
with(c4)
{
setTop(120);
setLeft(140);
setIconPosition("bottom");
};
d.add(c4);
var c5 = new qx.ui.form.CheckBox("Left Checkbox", "c5checked", "c5");
with(c5)
{
setTop(180);
setLeft(20);
setIconPosition("left");
};
d.add(c5);
var c6 = new qx.ui.form.CheckBox("Right Checkbox", "c6checked", "c6");
with(c6)
{
setTop(180);
setLeft(140);
setIconPosition("right");
};
d.add(c6);
var c7 = new qx.ui.form.CheckBox(null, "c7checked", "c7");
with(c7)
{
setTop(250);
setLeft(20);
};
d.add(c7);
var c8 = new qx.ui.form.CheckBox(null, "c7checked", "c7");
with(c8)
{
setTop(300);
setLeft(20);
setLabel("Label pure");
setShow("label");
setBorder(qx.renderer.border.BorderPresets.getInstance().black);
setBackgroundColor(new qx.renderer.color.Color("red"));
};
d.add(c8);
c8.addEventListener("changeChecked", function(e) {
this.setBackgroundColor(new qx.renderer.color.Color(this.getChecked() ? "green" : "red"));
});
});
</script>
</body>
</html>
|