New to Telerik UI for Blazor? Download Free 30-day trial
MultiColumnComboBox - Virtualization
- EXAMPLE
- VIEW SOURCE
- EDIT IN TELERIK REPL
- Change Theme
default
- Virtualization.razor
- UrbanAreaService.cs
- UrbanAreaDto.cs
Description
The Telerik Blazor MultiColumnComboBox provides support for UI virtualization to significantly improve the performance for large data sets. To enable it, set the ScrollMode
, ListHeight
, ItemHeight
and PageSize
.
You can also use filtering with virtualization, and you can fetch the data on demand through a remote service, so you don't have to load all the available records at once, you can only request those the user scrolls or filters to.
You can observe this behavior in the demo above - simply open the combobox and scroll down the contents of the table - new cities will be added to the suggestion list when neccessary.
The component also provides a NoDataTemplate
. Use it to customize the dropdown content when there are no items to display.