Blazor ComboBox Example - Filtering
This example demonstrates the filtering functionalities of the ComboBox. Type the character(s) in ComboBox component and select an item from the filtered list based on the typed characters.
Properties
The ComboBox has built-in support to filter the data source when AllowFiltering property is set to true
.
In Filtering event, you can filter down the data source and return the resulted data to ComboBox via UpdateData
method to perform custom filtering.
The debounce delay, in milliseconds, for filtering the items in the ComboBox component can be set by enabling the DebounceDelay property.
See also