You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when I click on the delete icon, the text entry is not removed, the "execute" is not fired:
qxex.ui.form.DateField.js
case "button2":
control = new qx.ui.form.Button(); //null,xbGetQxIcon("16/actions/edit-delete.png"));
control.setFocusable(false);
control.setKeepActive(true);
control.addState("inner");
// Adding this has no effect:
// control.addListener("click", e => {
// this.setValue(null);
//});
control.addListener("execute", e => {
this.setValue(null);
});
this._add(control);
break;
I have tried a "click" event, but this is not triggered as well.
The click on the delete icon closes the calendar popup (qxex.ui.control.DateChooser) - probably this inhibits the event firing?
Same issue with current chromium or firefox (tested on Linux).
The text was updated successfully, but these errors were encountered:
Hi,
when I click on the delete icon, the text entry is not removed, the "
execute
" is not fired:I have tried a "
click
" event, but this is not triggered as well.The click on the delete icon closes the calendar popup (
qxex.ui.control.DateChooser
) - probably this inhibits the event firing?Same issue with current chromium or firefox (tested on Linux).
The text was updated successfully, but these errors were encountered: