I have a specific row pinned to the bottom in the grid. Whenever I add or remove some rowData in the grid, I need to update that pinned row. Take a look at the code snippet below:
this.gridApi.pinnedBottomRowData = rowNode.setDataValue(date, dataToPush);
this.gridApi.updateRowData(event.rowIndex);
this.gridApi.refreshCells({
rowNodes: [rowNode],
columns: [date],
force: true;
});
Despite the backend functioning correctly, the grid fails to update the view of the pinned row in the frontend. Is there a workaround to refresh the pinned row?