Is there a way to make the content of a cell in a react-virtualized Collection stay fixed to one side while scrolling? I usually achieve this with position:sticky, but it doesn't seem to work for content within a Collection.
I'm currently working on creating a Grid TV Guide similar to the image below. As I scroll, I want the content of the leftmost visible cell in a row to remain fixed on the screen's left side.
https://i.sstatic.net/Yv28y.png
I've managed to accomplish this without using react-virtualized, but as I continue scrolling through the guide, too much data is rendered, causing the page to slow down significantly.
If anyone has any advice or solutions, I would greatly appreciate it!
Thank you in advance!