New to Telerik UI for Blazor? Download Free 30-day trial
MultiColumnComboBox - Filtering
- EXAMPLE
- VIEW SOURCE
- EDIT IN TELERIK REPL
- Change Theme
default
Enable filtering for the ComboBox
Select the filter operator
ContainsDebounce Delay
- Filtering.razor
- ProductService.cs
- ProductDto.cs
Description
The Telerik Blazor MultiColumnComboBox provides a way to easily find the item you are after, by filtering the list of suggested items. When you focus the combo box, you can start typing the part of the text you are looking for, and the list of items will be populated with items that match the given criteria. This helps you can find the item you seek faster. For example, type “che” and examine the results.
In addition, you can control the filter operator used for the query. By default, the filter operator used is StartsWith, but if needed, you can override it through the FilterOperator parameter. Furthermore, you can control whether the internal oninput event is delayed through the DebounceDelay parameter.
The component also provides a NoDataTemplate
. Use it to customize the dropdown content when there are no items to display.