You are right.
I have a special case of inter dependency of some field references. Because
of that, I have to turn on validation when the page is completely loaded. I
thought dispatchig event at the end will solve this. Instead, setting the
values for form fields will also achieve this.
I remove
Hi Kanugula,
the "changeValue" event is fired automaticly if the value of the textfield
changes or if the focus left, after the users typed into it.
Try to set the value of the textfield after you have added the eventlistener,
then the event should fire automaticly an you can remove the line
Hello,
I am dispatching an event on TextFiled. it is firing the event, but I get
the error evt.getValue() is not a function. Can somebody point me the error
here?
var userIdField = new qx.ui.form.TextField(USERID_DEFAULT);
userIdField.setLiveUpdate(true);
userIdField.addEventListener("changeValu