So I'm using ag-Grid in my React project. I'm trying to load data on the server and render them via pagination in the UI, instead of the getting the whole dataset at one go.
However, it looks like this method only works with ag-grid's infinite scroll: https://www.ag-grid.com/javascript-grid-server-side-model
Since I'm trying to avoid infinite scrolling, I'm wondering if there's a way I can bypass or override ag-grid's internal pagination with my own pagination control that will make a call out to the server for the next chunk of data on every page..?
Thanks!