I have several dropdowns on an app I'm working on where the filtering is not working. Specifically on add and edit pages, dropdowns with the same exact settings filter correctly on the main page but not on the pop up add or edit page.
Here is the code on a dropdown that does work:
<div class="col-9" style="margin-bottom: 1rem">
<RadzenDropDown TextProperty="CompanyName" TValue="int" Data="@allCompanies" @bind-Value="@companyfilter" ValueProperty="CompanyID" Placeholder="Select Company..." Style="width: 100%" Change="@CompanyFilterSelected" AllowFiltering="true" FilterCaseSensitivity="Radzen.FilterCaseSensitivity.CaseInsensitive"></RadzenDropDown>
</div>
And code for a dropdown using the same data on the add page that does not work:
<div class="col-md-9">
<RadzenDropDown Data="@companiesForCompanyID" TextProperty="CompanyName" @bind-Value="@facility.CompanyID" ValueProperty="CompanyID" SelectedValue="@facility.Company" TValue="int" FilterCaseSensitivity="Radzen.FilterCaseSensitivity.CaseInsensitive" LoadData="@companiesForCompanyIDLoadData" Name="CompanyID" AllowFiltering="true" Style="width: 100%" Placeholder="Choose Company" FilterOperator="Radzen.StringFilterOperator.Contains" AllowSelectAll="false" AllowVirtualization="true" Count="@companiesForCompanyIDCount">
</RadzenDropDown>
</div>