RadzenDropDown Component Filtering Multiple Properties

Good afternoon,

I am using the DropDown components like this:

<RadzenDropDown @ref="@processDropDown" FilterCaseSensitivity="FilterCaseSensitivity.CaseInsensitive" FilterOperator="StringFilterOperator.Contains" AllowFiltering="true"
                Data="@processes" TextProperty="@nameof(Process.Description)" ValueProperty="@nameof(Process.Id)" AllowClear="true"
                @bind-Value="@JobDetail.ProcessId" @bind-Value:after="OnProcessChanged" class="w-100" Name="process">
    <Template Context="processContext">
        @((processContext as Process)?.ProcessId) @((processContext as Process)?.Description)
    </Template>
</RadzenDropDown>

Is there a way so that when the user uses the filter, it can search not just the TextProperty? I would like to specify that the filter filters on two properties of the entity in the collection.

Thanks.

Using LoadData event you can apply custom filtering - check our demos for reference.

Yep, that works with a bit of tweaking for my scenario. Hadn't noticed that example. Thank you.