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;

