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

In Multiselect component, custom values are not updated in popup when DataSource property is not binded

Sample: https://www.syncfusion.com/downloads/support/directtrac/general/ze/Multiselect1174976100

Replication procedure:

1. Run the above sample.

2. Type any custom values, it shows No Records Found in popup.

3. Actual: No Records Found message is shown in popup.

4. Expected: Custom values should be should in popup.


<SfMultiSelect TValue="List<string>" TItem="string" Mode="VisualMode.Box" @bind-Value="Emails" AllowCustomValue=true>

    <MultiSelectTemplates TItem="string">

        <NoRecordsTemplate>

            <span class='enter-guest'> Enter the Email to Add</span>

        </NoRecordsTemplate>

    </MultiSelectTemplates>

</SfMultiSelect>



@code {

    public List<string> Emails { get; set; }

}