Filtering on dropdowns not working

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>

Hi @Kafive,

Unfortunately from your code we cannot tell why isn’t working. If you have Radzen subscription you can send us your application where we can reproduce the problem at info@radzen.com.