Hello there, I have a multi-select dropdown and I'm not able to get contains to work. Any idea what I could be doing wrong?
This is my code in Razor page:
@Html.EJS().MultiSelect("riskTreatment").Placeholder("- Select risk type(s) -").PopupHeight("200px").Width("300px").DataSource(dataManger =>
dataManger.Url("/Manage/TreatmentControlsDatasource").Adaptor("UrlAdaptor").CrossDomain(true)).FilterType(Syncfusion.EJ2.DropDowns.FilterType.Contains).AllowFiltering(true).Fields(new Syncfusion.EJ2.DropDowns.MultiSelectFieldSettings
{
Text = "ControlFullName",
Value = "Id"
}).Render()
It just seems to do "Starts with" only.
Thanks in advance.