Alex, the focus bug is still there :-)

I have written test code:

qx.Class.define("custom.Application",
{
  extend : qx.application.Standalone,

  members :
  {
    // [Entry point]
    main: function()
    {
      // [SuperClass]
      this.base(arguments);

      // [Main Container]
      this._container = new qx.ui.container.Composite(
        new qx.ui.layout.VBox().set({
          spacing: 1
        })
      );
      this.getRoot().add(this._container, {edge:0});

      // [Tabs]
      this._tabView = new qx.ui.tabview.TabView();
      this._container.add(this._tabView, {flex: 1});

      for (var i = 0; i < 3; i++)
      {
        var page = new qx.ui.tabview.Page("Page " + i);
        var area = new htmlarea.HtmlArea();

        page.setLayout(new qx.ui.layout.Canvas);
        page.add(area, {edge: 0});

        this._tabView.add(page);
      }
    }
  }
});

First click to tabs and then return to first tab and try to edit (you can't)

This is probably firefox bug

Hope that helps:)
Petr

2008/9/3 Alexander Back <[EMAIL PROTECTED]>:
> Hi qooxdoo-users,
>
> I just committed some changes to get a HtmlArea widget running with
> qooxdoo 0.8. There are still open issues (especially for IE browsers)
> which need to be fixed, but I wanted to share a running version as early
> as possible.
>
> So if anyone will be using the HtmlArea with 0.8 I'll be happy for every
> bug report. This will help me to kick out the bugs :)
>
> Many thanks to Petr, who send me over some patches for this widget.
> Thanks for the help!
>
> cheers,
>   Alex
>
> -------------------------------------------------------------------------
> This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
> Build the coolest Linux based applications with Moblin SDK & win great prizes
> Grand prize is a trip for two to an Open Source event anywhere in the world
> http://moblin-contest.org/redirect.php?banner_id=100&url=/
> _______________________________________________
> qooxdoo-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
>

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to