I am using ag-grid
, Angular 7
and the server-side datasource with pagination.
The way my api works is that I fire two requests, the first one gives me the total table item count, and the second retrieves the desire page data.
For now, I am waiting for the count request response, and setting up the datasource, firing the request that gets the data.
The only way I know to tell the grid the total items count is through
params.successCallback(data, lastRow)
Is it possible to set the last row independently ? For example with a setLastRow()
method ?