summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/example/GroupBox_2.html
diff options
context:
space:
mode:
authorDerrell Lipman <derrell@samba.org>2007-01-03 19:57:40 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:36:06 -0500
commit2e7c59c24470766e37309c7a8bfa4c7b81c57614 (patch)
treec44c89911868c52f25ca66bdefa68e13248db8e6 /webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/example/GroupBox_2.html
parent57f5bf78fa9fc9d190c3cb25251e686a1488f790 (diff)
downloadsamba-2e7c59c24470766e37309c7a8bfa4c7b81c57614.tar.gz
samba-2e7c59c24470766e37309c7a8bfa4c7b81c57614.tar.bz2
samba-2e7c59c24470766e37309c7a8bfa4c7b81c57614.zip
r20515: Continued work on the Web Application Framework. Until we get all of the
functionality of the old scripts incorporated into the new framework, the old scripts need to still be available. I've reverted to having the old scripts be the default pages, and added an option to access the preview of the new SWAT. (This used to be commit b43620d4b8eff815f4a6dc02522a8dfc9fdcaef4)
Diffstat (limited to 'webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/example/GroupBox_2.html')
-rw-r--r--webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/example/GroupBox_2.html153
1 files changed, 0 insertions, 153 deletions
diff --git a/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/example/GroupBox_2.html b/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/example/GroupBox_2.html
deleted file mode 100644
index 117732caf4..0000000000
--- a/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/example/GroupBox_2.html
+++ /dev/null
@@ -1,153 +0,0 @@
-<html>
-<head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>qooxdoo &raquo; 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>Test for qx.ui.groupbox.CheckGroupBox</p>
- </div>
-
- <fieldset style="position:absolute; top:48px; left:400px; width:200px; height:100px"><legend>builtin</legend>content content content content content content content content content content content content content content content</fieldset>
-
-
- <script type="text/javascript">
- qx.core.Init.getInstance().defineMain(function()
- {
- var d = qx.ui.core.ClientDocument.getInstance();
-
- var fs = new qx.ui.groupbox.CheckGroupBox("CheckBox FieldSet");
-
- with(fs)
- {
- setWidth("40%");
- setBottom(48);
- setTop(48);
- setLeft(20);
-
- setMaxWidth(350);
- setMinWidth("auto");
- };
-
- d.add(fs);
-
-
-
-
- var fsl = new qx.ui.layout.VerticalBoxLayout;
- fsl.setLeft(0);
- fsl.setRight(0);
- fsl.setHeight("auto");
- fsl.setSpacing(4);
- fs.add(fsl);
-
-
-
-
- var r1 = new qx.ui.layout.HorizontalBoxLayout;
- r1.setLeft(0);
- r1.setWidth("100%");
- r1.setHeight("auto");
- r1.setVerticalChildrenAlign("middle");
- fsl.add(r1);
-
- var a1 = new qx.ui.basic.Atom("TextField 1");
- with(a1)
- {
- setLeft(0);
- setWidth("40%");
- setHorizontalChildrenAlign("left");
- };
-
- var i1 = new qx.ui.form.TextField;
- with(i1)
- {
- setRight(0);
- setWidth("60%");
- };
-
- r1.add(a1, i1);
-
-
-
-
-
- var r2 = new qx.ui.layout.HorizontalBoxLayout;
- r2.setLeft(0);
- r2.setWidth("100%");
- r2.setHeight("auto");
- r2.setVerticalChildrenAlign("middle");
- fsl.add(r2);
-
- var a2 = new qx.ui.basic.Atom("TextField 2", "icon/16/appearance.png");
- with(a2)
- {
- setLeft(0);
- setWidth("40%");
- setHorizontalChildrenAlign("left");
- };
-
- var i2 = new qx.ui.form.TextField;
- with(i2)
- {
- setRight(0);
- setWidth("60%");
- };
-
- r2.add(a2, i2);
-
-
-
-
-
-
- var r3 = new qx.ui.layout.HorizontalBoxLayout;
- r3.setLeft(0);
- r3.setWidth("100%");
- r3.setHeight("auto");
- r3.setVerticalChildrenAlign("middle");
- fsl.add(r3);
-
- var a3 = new qx.ui.basic.Atom("TextField 3");
- with(a3)
- {
- setLeft(0);
- setWidth("40%");
- setHorizontalChildrenAlign("left");
- };
-
- var i3 = new qx.ui.form.TextField;
- with(i3)
- {
- setRight(0);
- setWidth("60%");
- };
-
- r3.add(a3, i3);
-
-
-
-
-
- fs.getLegendObject().addEventListener("changeChecked", function(e) {
- i1.setEnabled(e.getData());
- i2.setEnabled(e.getData());
- i3.setEnabled(e.getData());
-
- a1.setEnabled(e.getData());
- a2.setEnabled(e.getData());
- a3.setEnabled(e.getData());
- });
-
-
- });
- </script>
-</body>
-</html>