Hi Ken, I tried your example in the playground with IE6 on WinXP Sp3 without problems.
Have you also tried your example in the playground or only local? Cheers, Chris http://demo.qooxdoo.org/current/playground/#%7B%22code%22%3A%20%22this.viewer%2520%253D%2520new%2520qx.ui.container.Composite()%253B%250Athis.getRoot().add(this.viewer%252C%2520%257Bedge%2520%253A%252012%257D)%253B%250A%250Avar%2520basicLayout%2520%253D%2520new%2520qx.ui.layout.Basic()%253B%250Athis.viewer.setLayout(basicLayout)%253B%250A%250Avar%2520dm%2520%253D%2520new%2520qx.ui.table.model.Simple()%253B%250Adm.setColumns(%255B%2522list%2522%255D)%253B%250A%250Athis.menuItemTable%2520%253D%2520new%2520qx.ui.table.Table(dm)%253B%250Athis.menuItemTable.set(%257B%2520height%253A%2520260%252C%250A%2520%2520minHeight%253A%2520100%252C%250A%2520%2520width%253A%2520278%252C%250A%2520%2520columnVisibilityButtonVisible%253A%2520false%252C%250A%2520%2520statusBarVisible%253A%2520false%252C%250A%2520%2520showCellFocusIndicator%253A%2520false%252C%250A%2520%2520tabIndex%253A%25204%250A%257D)%253B%250A%250Athis.menuItemTable.setColumnWidth(0%252C284)%253B%250Athis.viewer.add(this.menuItemTable)%253B%250Athis.viewer.syncAppearance()%253B%250A%22%7D Ken MacDonald schrieb: > Fritz, Stefan: > Here is an app which demo's the problem; works in FF/IE 8/IE 7 but > hangs IE 6 every time. As noted before, running XP w/qoox 0.8.3. > > In earlier example, 'this.viewer' was a rather complicated > subclass/override to the container.Composite(), so I simplified it for > this example (the subclass defined firstCol, secondCol, thirdCol, etc. > that you saw in earlier example code). > Ken > > main : function() > { > this.base(arguments); > > this.viewer = new qx.ui.container.Composite(); > this.getRoot().add(this.viewer, {edge : 12}); > var basicLayout = new qx.ui.layout.Basic(); > this.viewer.setLayout(basicLayout); > var dm = new qx.ui.table.model.Simple(); > dm.setColumns(["list"]); > this.menuItemTable = new qx.ui.table.Table(dm); > this.menuItemTable.set({ height: 260, > minHeight: 100, > width: 278, > columnVisibilityButtonVisible: false, > statusBarVisible: false, > showCellFocusIndicator: false, > tabIndex: 4 > }); > this.menuItemTable.setColumnWidth(0,284); > this.viewer.add(this.menuItemTable); > this.viewer.syncAppearance(); > } > > > On Mon, Oct 5, 2009 at 2:12 PM, Fritz Zaucker <[email protected] > <mailto:[email protected]>> wrote: > > Hi Ken, > > one difference between Stefan's example and your posting is that > he adds the > table to the root window, whereas you add it to secondCol. So the > question > is, what is secondCol? The other difference is that you add it > with flex, > so the problem could also lie there (something with the layout > manager, I > suppose). Perhaps this help to create a simple demo app which > shows the > problem. > > Cheers, > Fritz > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > Come build with us! The BlackBerry® Developer Conference in SF, CA > is the only developer event you need to attend this year. Jumpstart your > developing skills, take BlackBerry mobile applications to market and stay > ahead of the curve. Join us from November 9-12, 2009. Register now! > http://p.sf.net/sfu/devconf > ------------------------------------------------------------------------ > > _______________________________________________ > qooxdoo-devel mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel > -- Christian Schmidt Software Entwickler 1&1 Internet AG - Web Technologies Ernst-Frey-Straße 9 · DE-76135 Karlsruhe [email protected] Amtsgericht Montabaur / HRB 6484 Vorstände: Henning Ahlert, Ralph Dommermuth, Matthias Ehrlich, Thomas Gottschlich, Robert Hoffmann, Markus Huhn, Hans-Henning Kettler, Dr. Oliver Mauss, Jan Oetjen Aufsichtsratsvorsitzender: Michael Scheeren ------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
