Trying to make our application ready for production, I stumble on some forms over following warnings and error:
WARN org.sablo.BrowserConsole - AG Grid: Grid API function getFirstDisplayedRow() cannot be called as the grid has been destroyed.
It is recommended to remove local references to the grid api. Alternatively, check gridApi.isDestroyed() to avoid calling methods against a destroyed grid.
To run logic when the grid is about to be destroyed use the gridPreDestroy event. See: See https://www.ag-grid.com/angular-data-grid/grid-lifecycle/#grid-pre-destroyed
WARN org.sablo.BrowserConsole - AG Grid: Grid API function getLastDisplayedRow() cannot be called as the grid has been destroyed.
It is recommended to remove local references to the grid api. Alternatively, check gridApi.isDestroyed() to avoid calling methods against a destroyed grid.
To run logic when the grid is about to be destroyed use the gridPreDestroy event. See: See https://www.ag-grid.com/angular-data-grid/grid-lifecycle/#grid-pre-destroyed
ERROR org.sablo.BrowserConsole - AG Grid: setRowCount cannot be used while using row grouping. buildStackMessage@http://localhost:8183/chunk-VOCGXZNC.js:34952:24
it seems to be a Servoy thing, as I can find docs on AG Grid as hinted in the WARN, but not in Servoy?
I don’t see the differnce between forms throwing the WARN/ERROR and the ones that don’t.