Hi Petr, thanks for the bug report. Really appreciated :)
Petr Kobalíček wrote: > Filled another one #1367. > > Images are still corrupted by getting html content by getHtml() > > Try to add image and call getHtml() (for example from toolbar) > > Alex, we should create some testing html and be sure that HtmlArea > will not corrupt it, because if it corrupt html content, some > customers can be really angry to me :-D :-D No only your customers :) Seriously, I also thought about these issues as well and already added a bug report for this one: http://bugzilla.qooxdoo.org/show_bug.cgi?id=1086 Unit tests should be introduced with the HtmlArea widget to cover issues like the one you described. All I need is a 48-hours day at the moment ;) cheers, Alex > > Cheers > - Petr > > 2008/9/3 Petr Kobalíček <[EMAIL PROTECTED]>: >> You have it, #1366 ;-) >> >> 2008/9/3 Alexander Back <[EMAIL PROTECTED]>: >>> Hi Petr, >>> >>> please file a bug report and assign it to me. >>> >>> Thanks, >>> Alex >>> >>> Petr Kobalíček wrote: >>>> 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
