Hi, I'm new to react-virtual and have just been checking out your examples. In particular, I'm interested in the "Smooth Scrolling" example. However, it doesn't seem to be working at the moment. Any idea what's wrong with it?
https://tanstack.com/virtual/v3/docs/examples/react/smooth-scroll...
I'm using the virtualizer with solidjs and also table. I have an issue where when I change things, like for example the column order, the rows don't rerender until I scroll past them
Does anyone know of an example (or if its possible) to virtualize a vanilla html table? I can see a lot of examples online using react-table but we've already got a bunch of vanilla html tables + custom styling that want virtualizing.
I'm looking at examples codesandbox and it feels like you can do something like const items = rowVirtualizer.getVirtualItems() and do not call that function 3 times inside the same render. Which begs the question, why is it written this way? My hunch is that this function is probably just an accessor and calling almost the same performance as if it was rowVirtualizer.virtualItemshttps://codesandbox.io/s/github/tanstack/virtual/tree/beta/examples/react/infinite-scroll?from-embed=&file=/src/m...