ngx-datatables-net Modern Angular wrapper for DataTables.net

Scroller (virtual scrolling)

DataTables docs

10,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.

IDNamePositionOfficeAgeStart dateSalaryStatus
import 'datatables.net-scroller';

data = makeEmployees(10_000);
options: Config = {
  deferRender: true,
  scrollY: 400,
  scroller: true,
};