Re: [qooxdoo-devel] qx.ui.core.Widget#fadeIn / #fadeOut issue

2016-02-04 Thread Dietrich Streifert
Thank you Peter. Am 03.02.2016 um 18:11 schrieb Peter Schneider: > Sorry for the delay, lots to do here... > > Nevertheless, here's the bug: > http://bugzilla.qooxdoo.org/show_bug.cgi?id=9251 > > ..and the proposed pull request seems to do the job (as far as I can tell) > > /Peter > > >

Re: [qooxdoo-devel] qx.ui.core.Widget#fadeIn / #fadeOut issue

2016-02-03 Thread Peter Schneider
Sorry for the delay, lots to do here... Nevertheless, here's the bug: http://bugzilla.qooxdoo.org/show_bug.cgi?id=9251 ..and the proposed pull request seems to do the job (as far as I can tell) /Peter Am 2/3/2016 um 3:09 PM schrieb Dietrich Streifert: > Hey Peter, > > It would be nice to ha

Re: [qooxdoo-devel] qx.ui.core.Widget#fadeIn / #fadeOut issue

2016-02-03 Thread Dietrich Streifert
Hey Peter, It would be nice to have this issue in bugzilla and to have some feedback if the pull request below fixes the issue. Thank you. Regards Dietrich Am 02.02.2016 um 15:37 schrieb Dietrich Streifert: > I'll propos this fix: > > https://github.com/qooxdoo/qooxdoo/pull/167 > > @Peter: co

Re: [qooxdoo-devel] qx.ui.core.Widget#fadeIn / #fadeOut issue

2016-02-02 Thread Dietrich Streifert
That was a good catch! It seems that in method fadeOut https://github.com/qooxdoo/qooxdoo/blob/release_5_0_1/framework/source/class/qx/html/Element.js#L1588 on animation end this.hide() is explicitly called, where on fadeIn this.show() is not called: https://github.com/qooxdoo/qooxdoo/blob/rel

Re: [qooxdoo-devel] qx.ui.core.Widget#fadeIn / #fadeOut issue

2016-02-02 Thread kreimer
Hi there, here is another workaround, maybe it gives some clue for resolving the bug: http://tinyurl.com/hnfl55v Cheers -- View this message in context: http://qooxdoo.678.n2.nabble.com/qx-ui-core-Widget-fadeIn-fadeOut-issue-tp7587961p7587965.html Sent from the qooxdoo mailing list archive

Re: [qooxdoo-devel] qx.ui.core.Widget#fadeIn / #fadeOut issue

2016-02-02 Thread Dietrich Streifert
Please open a bug in bugzilla so this does not get lost and please include my workaround there. This may help others finding a solution. Regarding the edit-ability during fade: you can simply set the fading widget to readOnly = true before animation and back to false afterwards. It may be helpf

Re: [qooxdoo-devel] qx.ui.core.Widget#fadeIn / #fadeOut issue

2016-02-02 Thread Peter Schneider
Hi Dietrich, thanks for the work-around. Although it behaves a little bit different (you can still edit the input TextField while fading) it is a valid option. Should I issue a bug for the original problem? Or is this problem "to remote" so that it won't be addressed soon anyway? Regards, Pet

Re: [qooxdoo-devel] qx.ui.core.Widget#fadeIn / #fadeOut issue

2016-02-02 Thread Dietrich Streifert
Hi Peter, yes this seems to be a bug. I don't think you're doing something wrong. As a workarraound you could use animation based on qx.bom.element.Animation: http://tinyurl.com/znwl9zs Regards Dietrich Am 01.02.2016 um 10:44 schrieb Peter Schneider: > Hi there, > > whenever fadeOut() and fade

[qooxdoo-devel] qx.ui.core.Widget#fadeIn / #fadeOut issue

2016-02-01 Thread Peter Schneider
Hi there, whenever fadeOut() and fadeIn() are issued on "text-input" elements, it seems that no more input focus handling is done on that element. However if the fading is done on the button e.g. the click still works Here's a simple playground example to demonstrate this: -