Hi Sebastian, maybe that's funny for you...
Try following modified sample of qooxdoo. Then you can participate on the funny ListView:) And please then tell me if you need new hardware too. Andreas <?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" /> <title>qooxdoo demo</title> <link type="text/css" rel="stylesheet" href="../demolayout.css"/> <script type="text/javascript" src="../demoinclude.js"></script> </head> <body> <script type="text/javascript" src="../demolayout.js"></script> <div id="demoDescription"> <p>Testing QxListView with text cells.</p> <p>Added some sort handling stuff.</p> </div> <script type="text/javascript"> window.application.main = function() { var ld = []; var lt = [ "Image", "Text", "PDF", "Illustration", "Document" ]; for (var i=0, t; i<1000; i++) { t=Math.round(Math.random()*4); 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--" } ,c0:{text:"0"} ,c1:{text:"1"} ,c2:{text:"2"} ,c3:{text:"3"} ,c4:{text:"4"} ,c5:{text:"5"} ,c6:{text:"6"} ,c7:{text:"7"} ,c8:{text:"8"} ,c9:{text:"9"} ,c10:{text:"10"} ,c11:{text:"11"} ,c12:{text:"12"} ,c13:{text:"13"} ,c14:{text:"14"} ,c15:{text:"15"} ,c16:{text:"16"} ,c17:{text:"17"} ,c18:{text:"18"} ,c19:{text:"19"} }); }; var lc = { name : { label : "Name", width : 100, type : "text", sortable : true, sortProp : "text" }, size: { label : "Size", width : 50, type : "text", sortable : true, sortProp : "text", sortMethod : QxCompare.byIntegerString, align : "right" }, type : { label : "Type", width : 80, type : "text", sortable : true, sortProp : "text" }, modified : { label : "Last Modified", width : 150, type : "text" }, rights : { label : "Rights", width: 80, type : "text" } ,c0 : { label : "0", width : 20, type : "text", sortable : true, sortProp : "text" } ,c1 : { label : "1", width : 20, type : "text", sortable : true, sortProp : "text" } ,c2 : { label : "2", width : 20, type : "text", sortable : true, sortProp : "text" } ,c3 : { label : "3", width : 20, type : "text", sortable : true, sortProp : "text" } ,c4 : { label : "4", width : 20, type : "text", sortable : true, sortProp : "text" } ,c5 : { label : "5", width : 20, type : "text", sortable : true, sortProp : "text" } ,c6 : { label : "6", width : 20, type : "text", sortable : true, sortProp : "text" } ,c7 : { label : "7", width : 20, type : "text", sortable : true, sortProp : "text" } ,c8 : { label : "8", width : 20, type : "text", sortable : true, sortProp : "text" } ,c9 : { label : "9", width : 20, type : "text", sortable : true, sortProp : "text" } ,c10 : { label : "10", width : 20, type : "text", sortable : true, sortProp : "text" } ,c11 : { label : "11", width : 20, type : "text", sortable : true, sortProp : "text" } ,c12 : { label : "12", width : 20, type : "text", sortable : true, sortProp : "text" } ,c13 : { label : "13", width : 20, type : "text", sortable : true, sortProp : "text" } ,c14 : { label : "14", width : 20, type : "text", sortable : true, sortProp : "text" } ,c15 : { label : "15", width : 20, type : "text", sortable : true, sortProp : "text" } ,c16 : { label : "16", width : 20, type : "text", sortable : true, sortProp : "text" } ,c17 : { label : "17", width : 20, type : "text", sortable : true, sortProp : "text" } ,c18 : { label : "18", width : 20, type : "text", sortable : true, sortProp : "text" } ,c19 : { label : "19", width : 20, type : "text", sortable : true, sortProp : "text" } }; var lv = new QxListView(ld, lc); lv.setBorder(QxBorderObject.presets.shadow); lv.setBackgroundColor("white"); lv.setLocation(20, 48); //lv.setWidth(600); //lv.setHeight(350); lv.setRight(300); lv.setBottom(50); this.add(lv); // Color Themes QxColorManager.createThemeList(this.getClientWindow().getClientDocument(), 20, 448); }; </script> </body> </html> -- View this message in context: http://www.nabble.com/AW%3A-ListView-performance-problem-with-IE6-t1557722.html#a4231451 Sent from the qooxdoo-devel forum at Nabble.com. ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Qooxdoo-devel mailing list Qooxdoo-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel