r20445: add README file indicating that the swat directory is no longer relevant
[Samba.git] / swat / apps / qooxdoo-examples / test / ListView_4.html
blob7c884f93f5755418ca9921c30c113d13eb72828b
1 <html>
2 <head>
3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4 <title>qooxdoo &raquo; Demo</title>
5 <link type="text/css" rel="stylesheet" href="../../resource/css/layout.css"/>
6 <!--[if IE]>
7 <link type="text/css" rel="stylesheet" href="../../resource/css/layout_ie.css"/>
8 <![endif]-->
9 <script type="text/javascript" src="../../script/qx.js"></script>
10 </head>
11 <body>
12 <script type="text/javascript" src="../../script/layout.js"></script>
14 <div id="demoDescription">
15 <p>Testing qx.ui.listview.ListView with text cells.</p>
16 <p>This qx.ui.listview.ListView will be resized with the window.</p>
17 </div>
19 <script type="text/javascript">
20 qx.core.Init.getInstance().defineMain(function()
22 var ld = [];
23 var lt = [ "Image", "Text", "PDF", "Illustration", "Document" ];
25 for (var i=0, t; i<1000; i++)
27 t=Math.round(Math.random()*4);
28 ld.push({ name : { text : "File " + i }, size : { text : Math.round(Math.random()*100) + "kb" }, type : { text : lt[t] }, modified : { text : "Nov " + Math.round(Math.random() * 30 + 1) + " 2005" }, rights: { text : "-rw-r--r--" }});
31 var lc =
33 name : { label : "Name", width : 100, type : "text" },
34 size: { label : "Size", width : 50, type : "text", align : "right" },
35 type : { label : "Type", width : 80, type : "text" },
36 modified : { label : "Last Modified", width : 150, type : "text" },
37 rights : { label : "Rights", width: 80, type : "text" }
40 var lv = new qx.ui.listview.ListView(ld, lc);
42 lv.setBorder(qx.renderer.border.BorderPresets.getInstance().shadow);
43 lv.setBackgroundColor("white");
44 lv.setLocation(20, 48);
45 lv.setRight(335);
46 lv.setBottom(48);
48 qx.ui.core.ClientDocument.getInstance().add(lv);
49 });
50 </script>
51 </body>
52 </html>