We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b864cc commit e57facdCopy full SHA for e57facd
1 file changed
src/form/field/ComboBox.mjs
@@ -447,11 +447,13 @@ class ComboBox extends Picker {
447
* @param {*} oldValue
448
* @override
449
*/
450
- fireChangeEvent(value, oldValue) {
+ async fireChangeEvent(value, oldValue) {
451
let me = this,
452
FormContainer = Neo.form?.Container,
453
params = {component: me, oldValue, value};
454
455
+ await me.timeout(10);
456
+
457
me.fire('change', params);
458
459
if (!me.suspendEvents) {
0 commit comments