Welcome to the Angular feedback portal. We’re happy you’re here! If you have feedback on how to improve the Angular, 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!

0
Votes

The MultiSelectDropdown change event cannot find data of selected items using getDataByValue if mode="Box" is set if an invalid item is typed.


Using the following StackBlitz.  

Success: 

  1. Type "au" and press enter //
    Australia 
    chip is added
  2. Type "un" and press enter // United Kingdom chip is added
  3. Tab off control and the selected two items data is shown in JSON below the dropdown

Refresh browser

Failure:
  1. Type "au" and press enter //
    Australia 
    chip is added
  2. Type "un" and press tab // "un" text is there, but United Kingdom chip was not added
  3. Tab off control and the selected items show as an empty array even though Australia should be selected 

This must have something to do with the mode="Box" because if you remove that attribute, the control works as expected.