Virtual Scrolling
Virtual scrolling provides an alternative to paging.
While the user is scrolling the table, the TreeList renders only the rows for the current page depending on scroll position. To define the virtual scrolling functionality, set scrollable
to virtual
.
Getting Started
To configure the TreeList for virtual scrolling:
- Set its height either through its
height
input or through thestyle
property. - Set the
rowHeight
. - Set the
pageSize
.
The following example demonstrates how to use virtual scrolling.