I have a working version of a Material UI table with Grouped rows. https://codesandbox.io/s/1qzy3vvqp4
Now I need to be able to handle huge number of rows (with grouping).
Has anyone done this before? How do I approach this?
- Does
react-virtualized
have some functionality which I can use? - Should I try to figure out my own calculations based on
scrollHeight
andscrollY
. If yes, how will that look like since my data is split into multiple arrays for grouping?