Hi List,

It seems that IE fires "input"-events on fields if I use .setValue().
But it only happens in the build version.
I've tested it with the following minimal skeleton example:

var tf = new qx.ui.form.TextField();
var doc = this.getRoot();
doc.add(tf, {left: 100, top: 50});

tf.addListener("input", function(e) {
  alert("Hello World!");
});
      
qx.event.Timer.once(function() { 
 tf.setValue("test");
}, this, 1000);

Everything is working fine as long as I use the source version. With the
build version it works with Firefox, Chrome and Safari but IE fires the
"input"-event after one sekond.

Could someone give me a workaround to avoid this nasty IE behaviour?
I use qooxdoo 1.1, and have tested it with IE8.

Regards,
Andreas

------------------------------------------------------------------------------

_______________________________________________
qooxdoo-devel mailing list
qooxdoo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to