Scroller (virtual scrolling)
DataTables docs10,000 rows, but only the visible ones are rendered to the DOM. Scroll the table body, Scroller virtualises rows for smooth performance on large datasets.
| ID | Name | Position | Office | Age | Start date | Salary | Status |
|---|
import 'datatables.net-scroller';
data = makeEmployees(10_000);
options: Config = {
deferRender: true,
scrollY: 400,
scroller: true,
};