Replies: 2 comments 2 replies
-
The video does not load. |
Beta Was this translation helpful? Give feedback.
1 reply
-
The number you show is related to the lazy unloading of the items. The list updates its items when the items no longer fill the viewport. However it does not eagerly unload items that leave the viewport. Hope this makes sense. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there,
We are having an issue with
react-virtuoso
that I was able to replicate in simple CodeSandbox. Here's a demo of the problem:msedge_V9wBQgH3uc.mp4
In a nutshell, if you have a collapsible component and a virtualized list after that collapsible component, collapsing the content brings the virtualized list into view, but not all possible items are rendered. Also, if the component is first rendered expanded (demo at
0:43
), scrolling down to the virtualized list will not render anything.I'm wondering if we are missing something in
react-virtualized
configuration, or if a re-render must be forced to handle a scenario like this. Also, assuming a re-render must be forced, is this something that should fall on the consumer side of things, or should this behaviour be built-in inreact-virtuoso
? 🤔Beta Was this translation helpful? Give feedback.
All reactions