summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/test/ComboBox_3.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/test/ComboBox_3.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/test/ComboBox_3.html')
-rw-r--r--webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/test/ComboBox_3.html123
1 files changed, 0 insertions, 123 deletions
diff --git a/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/test/ComboBox_3.html b/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/test/ComboBox_3.html
deleted file mode 100644
index 7fe9f3ff76..0000000000
--- a/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/test/ComboBox_3.html
+++ /dev/null
@@ -1,123 +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>Testing qx.ui.form.ComboBox implementation.</p>
- <p>Testing object creation (the list content will be filled then) on first open.</p>
- <p>Added Color Theme Buttons</p>
- <p>Now with image inside the popup.</p>
- </div>
-
- <select style="position:absolute; left:300px; top:48px; width: 120px;">
- <option>Item No 1</option>
- <option>Item No 2</option>
- <option>Item No 3</option>
- <option>Item No 4</option>
- <option>Item No 5</option>
- <option>Item No 6</option>
- <option>Item No 7</option>
- <option>Item No 8</option>
- <option>Item No 9</option>
- <option disabled="true">Item No 10</option>
- <option>Item No 11</option>
- <option>Item No 12</option>
- <option>Item No 13</option>
- <option>Item No 14</option>
- <option>Item No 15</option>
- <option>Item No 16</option>
- <option>Item No 17</option>
- <option>Item No 18</option>
- <option>Item No 19</option>
- <option disabled="true">Item No 20</option>
- <option>Item No 21</option>
- <option>Item No 22</option>
- <option>Item No 23</option>
- <option>Item No 24</option>
- <option>Item No 23</option>
- <option>Item No 24</option>
- <option>Item No 25</option>
- <option>Item No 26</option>
- <option>Item No 27</option>
- <option>Item No 28</option>
- <option>Item No 29</option>
- <option disabled="true">Item No 30</option>
- </select>
-
- <script type="text/javascript">
- qx.core.Init.getInstance().defineMain(function()
- {
- var d = qx.ui.core.ClientDocument.getInstance();
-
- var c1 = new qx.ui.form.ComboBox;
- c1.setLocation(20, 48);
-
- // this example seems to be buggy with auto-height
- // c1.getPopup().setHeight(150);
-
- c1.addEventListener("beforeInitialOpen", function(e)
- {
- var item;
- var list = [ "archive", "binary", "card", "document", "html", "image", "manual", "multimedia", "pdf" ];
-
- for(var i=0; i<list.length; i++)
- {
- item = new qx.ui.form.ListItem(list[i], "icon/48/mime-" + list[i] + ".png");
- item.setShow("icon");
-
- c1.add(item);
- };
-
- c1.setSelected(c1.getList().getFirstChild());
- });
-
- // this does not work here (if there is no content)
- c1.setSelected(c1.getList().getFirstChild());
-
- c1.addEventListener("changeValue", function(e) {
- this.debug("New value: " + e.getData());
- });
-
- c1.addEventListener("changeSelected", function(e) {
- this.debug("New selected: " + e.getData());
- });
-
-
-
-
- var b1 = new qx.ui.form.CheckBox("Editable");
-
- b1.set({ top: 50, left: 150 });
-
- b1.addEventListener("changeChecked", function(e) {
- c1.setEditable(e.getData());
- });
-
-
-
- d.add(c1, b1);
-
-
-
-
-
-
-
- // Color Themes
- qx.manager.object.ColorManager.getInstance().createThemeList(d, 20, 248);
-
-
-
- });
- </script>
-</body>
-</html>