I have implemented a TelerikCheckBoxListFilter as shown in: https://docs.telerik.com/blazor-ui/components/grid/filter/checkboxlist#custom-data
<FilterMenuTemplate Context="context">
<TelerikCheckBoxListFilter Data="@ManufacturersList"
Field="@(nameof(ManufacturerCodeFilterOption.Make))"
@bind-FilterDescriptor="@context.FilterDescriptor">
</TelerikCheckBoxListFilter>
</FilterMenuTemplate>
The TelerikCheckBoxListFilter renders as expected but when I try to apply selected items to filter the data, it builds those individual selected items with an "AND" clause. Is it possible to change the LogicalOperator for the FilterDescriptor it uses to use "OR" clauses between the selected items?