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>Dialog with qx.ui.form.TextField and qx.ui.form.TextArea</p>
<p>Testing minimize handling.</p>
</div>
<script type="text/javascript" language="JavaScript">
qx.core.Init.getInstance().defineMain(function() {
var d = qx.ui.core.ClientDocument.getInstance();
var txtfld;
var dialogEditFrage = new qx.ui.window.Window("Edit", "icon/16/editor.png");
with(dialogEditFrage) {
setSpace(300, 400, 100, 300);
setShowClose(false);
var qx_widget = new qx.ui.basic.Atom('Question');
with(qx_widget)
{
setHorizontalChildrenAlign('right');
set({top:10,left:10,width:'20%'});
};
add(qx_widget);
qx_widget = txtfld = new qx.ui.form.TextArea();
with (qx_widget) {
set({top:10,right:10,width:'70%'})
}
add(qx_widget);
qx_widget = new qx.ui.basic.Atom('Type');
with(qx_widget)
{
setHorizontalChildrenAlign('right');
set({top:70,left:10,width:'20%'});
};
add(qx_widget);
qx_widget = new qx.ui.form.TextField();
with (qx_widget) {
set({top:70,right:10,width:'70%'})
}
add(qx_widget);
var btnOK = new qx.ui.form.Button("OK", "icon/16/button-ok.png");
var btnCancel = new qx.ui.form.Button("Cancel", "icon/16/button-cancel.png");
var btnSetText = new qx.ui.form.Button("Reload", "icon/16/reload.png");
btnOK.set({ bottom : 10, right : 10 });
btnCancel.set({ bottom : 10, left : 10 });
btnSetText.set({ bottom : 10, left : 100 });
btnCancel.addEventListener("execute", function(e) {
dialogEditFrage.close();
});
btnOK.addEventListener("execute", function(e) {
dialogEditFrage.close();
});
btnSetText.addEventListener("execute", function(e) {
txtfld.setValue("Some Text here!");
txtfld.setFocused(true);
});
add(btnOK, btnCancel, btnSetText);
}
var btnOpen = new qx.ui.form.Button("Open the dialog");
btnOpen.set({ top : 50, left : 20 });
btnOpen.addEventListener("click", function(e) {
dialogEditFrage.open();
});
var btnRestore = new qx.ui.form.Button("Restore the dialog");
btnRestore.set({ top : 80, left : 20 });
btnRestore.addEventListener("click", function(e) {
dialogEditFrage.restore();
});
d.add(btnOpen,btnRestore,dialogEditFrage);
});
</script>
</body>
</html>
|