I have a grid that uses serverSide pagination & serverSideStoreType="partial" since I updated ag-grid to v27 from v24.
I want to use suppressRowVirtualisation="true" because scrolling reduces performance heavily, however, setting that option to true seems to load data for all my pages without waiting for the user to scroll at the bottom of the declared cacheBlockSize.
Is there a way to make suppressRowVirtualisation work alongside serverSide pagination?
All help is appreciated!
<ag-grid-angular #stopPointsGrid style="width: 100%; height: 100%;" class="ag-theme-material" [modules]="modules"
[columnDefs]="columnDefs" suppressCellFocus="true" suppressHorizontalScroll="true" rowSelection="multiple"
[rowModelType]="rowModelType" [cacheBlockSize]="cacheBlockSize" suppressRowClickSelection="true"
serverSideStoreType="partial" suppressColumnVirtualisation="true" suppressRowVirtualisation="true"
(gridReady)="onGridReady($event)" (rowClicked)="rowClicked($event)" [isFullWidthRow]="gridsService.isFullWidthRow"
[fullWidthCellRenderer]="gridsService.fullWidthCellRenderer" [suppressDragLeaveHidesColumns]="true">
</ag-grid-angular>