RadzenDropDown with Filtering - search box not displaying?

I’ve been referencing the RadzenDropDown component with filtering enabled, but the search box isn’t displaying. Here is an example:

Have I left anything out in my code? As far as I can tell, it should be allowing the ability to filter the dropdown by searching.

<RadzenRow>
    <RadzenColumn Size="12" SizeMD="6">
        <RadzenFormField Text="Endorsement Code" Style="width: 100%;">
            <RadzenDropDown Data=@endorsements @bind-Value="@Endorsements.Code" ValueProperty="Code" TextProperty="Description" AllowClear="true"
                            @bind-SearchText=SearchText FilterCaseSensitivity="FilterCaseSensitivity.CaseInsensitive" FilterOperator="StringFilterOperator.StartsWith" AllowFiltering="true" />
        </RadzenFormField>
    </RadzenColumn>
</RadzenRow>

My SearchTest string is defined as one of the first lines in my code:

public string SearchText { get; set; } = string.Empty;

Your code looks correct - check using your browser developer tools what is rendered. You can also attach Radzen.Blazor.csproj from our source code to your project to debug the problem.

Everything appears normal, but I did notice this:

The errors basically say that there is no label associated with a form field and that a form field should have a label. But as far as I can tell everything does have a label. Am I missing something?

I just discovered this post from Jan 2024. I'm guessing this is still an issue and this is the cause of the search bar not appearing.