New to KendoReact? Start a free 30-day trial
Virtual Scrolling
Virtual ScrollingPremium
Updated on Jun 24, 2026
Virtual scrolling provides an alternative to paging.
While the user is scrolling the table, the TreeList is only rendering a part of the data based on the scroll position.
Getting Started
TreeList virtual scrolling requires you to set the following configuration:
- Set the
scrollableprop tovirtual. - Set the TreeList height in pixels through its
styleprop. - Set the
rowHeightprop.
The following example demonstrates how to configure virtual scrolling in the TreeList to efficiently render large data sets by displaying only the visible rows.
Loading ...