diff options
Diffstat (limited to 'swat/apps/qooxdoo-examples/test/Atom_5.html')
-rw-r--r-- | swat/apps/qooxdoo-examples/test/Atom_5.html | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/swat/apps/qooxdoo-examples/test/Atom_5.html b/swat/apps/qooxdoo-examples/test/Atom_5.html deleted file mode 100644 index bc05b1ee56..0000000000 --- a/swat/apps/qooxdoo-examples/test/Atom_5.html +++ /dev/null @@ -1,43 +0,0 @@ -<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>Adding many qx.ui.basic.Atom widgets without setting the icon-width and -height.</p> - </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.Atom("Date", "icon/16/date.png"); - - atom.setTop(toppos); - atom.setLeft(20 + (j*50)); - - d.add(atom); - }; - - toppos += 20; - }; - }); - </script> -</body> -</html>
\ No newline at end of file |