react-query-questions
solid-query-questions
table-questions
virtual-questions
router-questions
react-charts-questions
ranger-questions
vue-query-questions
svelte-query-questions
bling-questions
form-questions
angular-query-questions
start-questions
db-questions
start-showcase
router-showcase
📣-announcements
Nested Virtual
Virtual infinite loop mode
Scrolling doesn't work properly
Reverse virtual scroll
sticky header for virtualized table gets scrolled after scrollTop reaches table height
sticky
css suppose that scrollTop of the container is less than the height of the content being scrolled.
But for virtual lists this is not true, because height of the content is quite fixed = (overscan * 2 + number of visible rows)*rowHeight
, but the conteiner's scrollTop property being increased as you scroll.
That way, after you scroll to the point when scrollTop is bigger than the content's height, sticky header gets scrolled up together with the rows. (it will flicker unpleasantly before doing so).
...Why npm i @tanstack/react-virtual installs alpha??
npm install @tanstack/react-virtual@beta
Why it defaults to alpha version, where even imports are different from what are described in documentation?...Mui-Autocomplete with Infinite Query
Does anyone have an a basic example of using solid-virtual?
Initialize (dynamic) list with scroll centered on a particular element?
Facing issues with react-table column visibility along with react-virtual
Scroll on initial render?
pass array to rowVirtualizer
v3 Virtual List in Tanstack Table v8

Use virtual scroll list in the middle of a scrollable <div>
Usage when estimateSize should be updated after mount?
item count / view window size
), but the virtualizer doesn't reflect the size change.
I understand that it is not a good idea to calculate size changes every time the estimateSize
function reference changes, but it's making my usecase unusable ðŸ˜
Maybe we could introduce something like a key
option to reinitialize (or at least recalculate) the virtualizer after mount 🤔 not sure if it's the best way to solve the problem though....Svelte-virtual performance with table
Reverse infinite scroll
flex flex-col-reverse
and it didnt work.
main usage for this is infinite scroll in chats...Do virtual list items have to be positioned absolutely?
Add content to scrolling container
Svelte-virtual: mousewheel and keydown cause nonstop scrolling