react-virtualized
react-virtualized copied to clipboard
Getting only 22 rows rendered in the list. I have a large list of 1000 items and trying to render it using WindowScroll + AutoSizer + List only renders 22 items
trafficstars
Getting only 22 rows rendered in the list. I have a large list of 1000 items and trying to render it using WindowScroll + AutoSizer + List only renders 22 items
Getting only 22 rows rendered in the list. I have a large list of 1000 items and trying to render it using WindowScroll + AutoSizer + List only renders 22 items
me two
The likely cause of the problem must be the lack of the 'scrollEment' prop:
const Test= () => {
const scrollElementRef = useRef(null);
return (
<div className="overflow-y-auto h-full max-h-full" ref={scrollElementRef}>
<WindowScroller scrollElement={scrollElementRef .current ?? window}>
{...}
</WindowScroller>
</div>
);
};