Hi all.
I'm trying to implement data logger using dynamic DataGrid.
Data array is updated by polling REST API with a given interval, and for first rows that fit into the screen dataProvider() function gets called by grid, updating the data, while keeping the fresh data at the top rows.
However, when visible portion of grid is full, dataProvider() is not called anymore, so to update data it's nescessary to scroll the table around and force dataProvider() to be called, thus updating the data.
Is there any way to forcefully update DataGrid, or it's visible part without user interaction?
Or by any chance I can reverse the order, and programmatically scroll to the bottom to grab the new data?
Thanks in advance.