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]> 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&reg; 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&#45;12, 2009. Register now&#33;
http://p.sf.net/sfu/devconf
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to