Internet Explorer displays focus indicator in the last created TextField. Try
the following code in qooxdoo 0.7.3 to see the problem. Is it a bug?

var field = new qx.ui.form.TextField();
field.setLeft(20);
field.setTop(20);
field.setWidth(100);
field.addToDocument();

var field2 = new qx.ui.form.TextField();
field2.setLeft(20);
field2.setTop(50);
field2.setWidth(100);
field2.addToDocument();

var field3 = new qx.ui.form.TextField();
field3.setLeft(20);
field3.setTop(80);
field3.setWidth(100);
field3.addToDocument();


field3.addEventListener("appear", function(event) {
    field.focus();
}, this);

Best regards,
Denis

-- 
View this message in context: 
http://www.nabble.com/How-to-avoid-appearance-of-caret-in-TextField-in-Internet-Explorer-tp19145371p19390779.html
Sent from the qooxdoo-devel mailing list archive at Nabble.com.


-------------------------------------------------------------------------
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
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to