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 When `dataCount` changes from 0 to 1000, the list is not updated. ```javascript const rowVirtualizer = useVirtualizer({ count: dataCount, getScrollElement: () => tableContainer.current, estimateSize: () =>...

Explicitly scroll to the correct offset. The range was initially calculated correctly, but the scroll position of `scrollElement` was 0 (which causes the range to be re-calculated to match the...

This PR adds lodash to the dependencies of the sticky react example. Without this dependency, codesandbox fails to load up. Here is the fixed version using lodash https://codesandbox.io/s/youthful-estrela-vggt56?file=/yarn.lock

### Describe the bug There's currently no possibility to override `measureSize` function in `useVirtual` hook options object in TypeScript. According to library sources, the hook expects `measureSize` as an argument...

### Describe the bug I tried to apply `initialOffset` to `useVirtualizer`, but it had no effect. ### Your minimal, reproducible example https://codesandbox.io/s/initialoffset-test-lttgyh ### Steps to reproduce See the sandbox. ###...

### Describe the bug Probably related to #344 The scroll position with dynamic height rows shifts when scrolling up and down, it is out of sync with the actual position...

### Describe the bug First these headless components are great. I'm using the [`useWindowVirtualizer`](https://tanstack.com/virtual/v3/docs/adapters/react-virtual#usewindowvirtualizer) react hook adapter. Unfortunately the measurements are incorrect, they bounce and the table updates delayed not...

Since https://github.com/TanStack/virtual/pull/353, we don't re-calculate the virtualized range in the render function anymore, but instead only when on scroll or size changes. This introduced a regression, where dynamically updating the...

### Describe the bug Hello, thanks for open sourcing this great library. One potential bug: when using `useWindowVirtualizer`, I noticed the virtualized content would start showing blank items when scrolling...

### Describe the bug Dynamic grid does not work combined with react-table. ``` import React from "react"; import { flexRender, getCoreRowModel, useReactTable, } from "@tanstack/react-table"; import { useVirtualizer } from...