I’m using AgGrid in React which gets frequent updates from a server. If I wanted to scroll down to analyze a specific row, it’s made difficult as the grid is constantly adding new rows and pushing the row I want to view down.
So to keep the row in view I have to continue scrolling. This isn’t the best UX.
One solution would be to pause updates if the user is not scrolled to the top. But once they do scroll to the top, all the updates would come in at once which isn’t great UX either.
I’m trying to allow the grid to continue updating but also keep the scroll position locked with the rows they are looking at. Is this possible with AgGrid?