Blazor Dropdown List Example - Filtering
This sample demonstrates the filtering functionalities of the DropDownList. Click the DropDownList component and then type a character in the search box in dropdown. It will display the filtered list items based on the typed characters.
Properties
The DropDownList has built-in support to filter the data source, when AllowFiltering property is set to true
.
In the Filtering event, you can filter the data source and return the resulted data to DropDownList using UpdateData
method to perform custom filtering.
The debounce delay, in milliseconds, for filtering the items in the DropDownList component can be set by enabling the DebounceDelay property.
See also