I'm working with ag-grid-community version 32.3.2, ag-grid-react version 32.3.2, and ReactJS 18.3.1 in my project, and I am facing an issue with the applyTransaction method.
const gridOptions = {
api: gridApi,
columnApi: columnApi
};
gridOptions.api.applyTransaction({
add: [newRowData],
});
When I try to use applyTransaction, it doesn’t seem to apply the changes or update the grid as expected. However, the applyTransactionAsync function works without any issues.
I expect that applyTransaction should immediately apply changes to the grid, like adding, updating, or removing rows.