virtual icon indicating copy to clipboard operation
virtual copied to clipboard

🤖 Headless UI for Virtualizing Large Element Lists in JS/TS, React, Solid, Vue and Svelte

Results 144 virtual issues
Sort by recently updated
recently updated
newest added

### Describe the bug In the "[React Virtual Table Example](https://tanstack.com/virtual/v3/docs/examples/react/table)", the `translateY` approach to row positioning allows rows to be positioned outside of the `` element. This causes issues with...

### Describe the bug I'm doing some POC to check if I'll be able to render a larger list and I face some issues with the current approach you use...

### Edit As described here, this is a working true fix https://github.com/TanStack/virtual/issues/619#issuecomment-1969516091 ### Describe the bug This problem occurs when you use smooth scrolling, i.e. via touch screen or trackpad...

### Describe the bug Expanding an item should never move the top of the item--it should always expand downwards. However, if the scroll window occludes the top of the item,...

### Describe the bug When calling scrolling to index in initial render the item is not correctly align, ```ts React.useEffect(() => { virtualizer.scrollToIndex(500) }, [virtualizer]) ``` it happens because in...

### Describe the bug Describe the bug: iam using useVirtualizer with tanstack/react-table to sticky , but iam scrolling to index 90 sticky not work Demo live: https://codesandbox.io/p/sandbox/keen-moser-k3g48j?embed=1&file=%2Fsrc%2Fmain.tsx%3A7%2C14 ### Your minimal,...

### Describe the bug A quick heads up - the example sandboxes aren't loading ![image](https://github.com/TanStack/virtual/assets/68548194/a285d154-c69e-4af7-8060-2f5f9b98b730) I have also flagged here: https://github.com/codesandbox/codesandbox-client/issues/8074 For anyone looking, you can find the code for...

### Describe the bug Currently, tanstack virtual installs by default the alpha version. ### Your minimal, reproducible example - ### Steps to reproduce npm i @tanstack/virtual ### Expected behavior The...

### Describe the bug When trying to create a list with a large count of rows, one of two things happens: A. If the count is over an arbitrary number,...

### Describe the bug when lanes and count are set to some specific numbers, it may miss some items when displayed. such as lanes = 4, count = 36 or...