Open fullscreen | Source on github | Edit on stackblitz
This example shows virtualized scrolling + lazy loading performance (load as you scroll).
import { Datagrid } from "@activewidgets/react";
import { lazy } from '@activewidgets/options';
// ...
let options = [
lazy()
];
function App(){
return <Datagrid columns={columns} rows={rows} options={options}/>
}
Read more: