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
If we provide invalid value in value property, then preselected value is added to the control.

Sample Link: https://stackblitz.com/edit/zkrbst?file=index.ts

Replication Procedure:

1. Run the sample.

2. Check the input element, invalid value is selected in the control.


Screenshot:


Code Snippet:

let
gamesMultiSelect = new
MultiSelect({

    // set the local data to dataSource property

    dataSource: (data
as
any).countries,

    // map the appropriate columns to fields property

    fields:
{
text:
'Name',
value:
'Code'},


    value: ['AU','CM','AM'],

    // set the placeholder to MultiSelect input element

    placeholder:
'Select countries',

});

games.appendTo('#local');