Welcome to the JavaScript feedback portal. We’re happy you’re here! If you have feedback on how to improve the JavaScript, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Replication steps:
import { ComboBox } from '@syncfusion/ej2-dropdowns';
let comboBoxObj: ComboBox = new ComboBox({
value: 'test',
change: () => {
alert("Value changed");
}
}, "#combobox");
Empty the text in the textbox and click the mouse cursor to somewhere else.
-> The "change" callback is not called.