I need to add a new row in the ag-grid with infinite scroll. There are similar questions for example this one. However my case is very different. I am using inline editing in the ag-grid and have a button to add a new row. There is a submit button which the user may or may not press. So the data on the server is not immediatly modified when the new row added to the client site. When I was using a client side model everything was trivial - I get the rows from the server and can add new rows to the array and call setRowData on ag-grid. However this function is not available with infinite scroll. I am using angular 2+ if that matters.
I tried to call applyTransaction however got an error in the console:
g-Grid: updateRowData() only works with ClientSideRowModel. Working with InfiniteRowModel was deprecated in v23.1 and removed in v24.1
Seems like a-grid simply removed the functionality with nothing to replace with.