diff options
Diffstat (limited to 'swat.obsolete/apps/qooxdoo-examples/test/Atom_9.html')
-rw-r--r-- | swat.obsolete/apps/qooxdoo-examples/test/Atom_9.html | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/swat.obsolete/apps/qooxdoo-examples/test/Atom_9.html b/swat.obsolete/apps/qooxdoo-examples/test/Atom_9.html new file mode 100644 index 0000000000..563816f7b2 --- /dev/null +++ b/swat.obsolete/apps/qooxdoo-examples/test/Atom_9.html @@ -0,0 +1,44 @@ +<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"> + This uses qx.ui.basic.Label instead of qx.ui.basic.Atom for text only display. Stored as Atom test file + because this way we could compare it to the previous test file. + </div> + + <script type="text/javascript"> + qx.core.Init.getInstance().defineMain(function() + { + var d = qx.ui.core.ClientDocument.getInstance(); + + var atom; + var toppos = 48; + + for (var i=0; i<20; i++) + { + for (var j=0; j<10; j++) + { + atom = new qx.ui.basic.Label("Date"); + + atom.setTop(toppos); + atom.setLeft(20 + (j*50)); + + d.add(atom); + }; + + toppos += 20; + }; + }); + </script> +</body> +</html>
\ No newline at end of file |