Hello,
For some reason my edit removed some of my post so reposting.
If I bind the multiselect dropdown to a list of objects with properties, everything works fine. In my case, I only have a list of strings and that makes the filtering not work. Do I need to set anything special on the MultiSelectFieldSettings Text and MultiSelectFieldSettings Value to make it filtering work with a list of strings?
private List ExistingTags { get; set; } = new List() { "Dove", "Multi-Specture", "Another Test", "more Testing" };
private List Tags { get; set; } = new List();
<EjsMultiSelect TValue="IEnumerable<string>" Placeholder="Enter Tags" DataSource="@ExistingTags" @bind-Value="@OrganizationCraft.Tags" AllowFiltering="true" AllowCustomValue="true" Mode="@VisualMode.Box">
<MultiSelectFieldSettings Text="???" Value="???"></MultiSelectFieldSettings>
</EjsMultiSelect>
Edit:
Since my list is only strings and I'm not setting the Text and Value properties, the AllowCustomValue is not workign properly