Hello everyone,

I'm working in legacy (0.7.4-pre) branch. I noticed an error with TextField.getSelectionStart method in Firefox. It seems that the code in the appropriate file has 2 typos. I'm using a mixin workaround for now, but it would be great if you could incorporate this patch.

And thanks for developing this great framework!

Alexei

P.S. Btw, I got one question regarding the qooxdoo roadmap. When are 0.7.4 and 0.8.0 releases are planned to go out? If anyone could show me the documentation page or something - that would be great.
--- TextField.js.orig	2008-03-15 18:40:30.000000000 +0200
+++ TextField.js	2008-03-15 18:41:19.000000000 +0200
@@ -1060,10 +1060,11 @@
         // if the property "selectionStart" is read while the element or one of
         // its parent elements is invisible
         // https://bugzilla.mozilla.org/show_bug.cgi?id=329354
+        var el = this._inputElement;
         try
         {
           if (qx.util.Validation.isValidString(el.value)) {
-            return this._inputElement.selectionEnd;
+            return this._inputElement.selectionStart;
           }
         } catch (e) {
           return 0;
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to