I would like to get physical row index of the top of visiable rows, is there any way could achieve this?
How to get physical row index to data on scroll?
We have afterScrollVertically hook that you can use in that scenario. If you combine it with autoRowSize plugin you can get information about the visible rows during scrolling, Here’s an example:
Thanks!!