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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

Replication steps:

  1. Create following combo box (demo: https://stackblitz.com/edit/4c9hc9):
    

    import { ComboBox } from '@syncfusion/ej2-dropdowns';

    let comboBoxObj: ComboBox = new ComboBox({

      value: 'test',

      change: () => {

        alert("Value changed");

      }

    }, "#combobox");

  2. Empty the text in the textbox and click the mouse cursor to somewhere else.
    -> The "change" callback is not called.

(After that the callback starts to work, until the combo box is reinitialized.)