Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
49 views

I'm implementing a complex Kanban board with virtualization and facing several challenges. The board has M rows (sections) and N columns (statuses), where each cell makes its own API call to fetch ...
DIWYANSHU KANTHWAL's user avatar
2 votes
1 answer
291 views

I need to implement a dropdown with react-aria-components but one of the use cases has a large amount of instances, provoking a very slow experience. For that reason, I want to use a row ...
dgnin's user avatar
  • 1,647
0 votes
0 answers
58 views

I want to display the text "scrolling" when I am scrolling but nothing happens. It does not show the text. What I am doing wrong ? code: <List innerElementType="ul"...
wepro01's user avatar
  • 41
0 votes
1 answer
68 views

Issue: Arrow Key Scrolling Not Working in react-select with react-window I am experiencing an issue where I am unable to scroll through the react-select dropdown list using the up and down arrow keys ...
shahrukh khan's user avatar
0 votes
1 answer
66 views

I am using react-window to optimize thousands of records from API. The code works well except that the first column doesn't scroll down with the Grid. Also, The overflow of records should be the same ...
smzapp's user avatar
  • 871
0 votes
1 answer
54 views

I am trying to get react-window to work with a list of float: left buttons in a resizable, scrollable window. I have a list like the following (all with bootstrap styled buttons floated left) |[--1--][...
KlutzyBubbles's user avatar
1 vote
0 answers
447 views

I'm using React with Material-UI and the react-window library's VariableSizeList component to render a list of dynamically sized components. Each component's height is determined after it has rendered,...
harharprogrammer's user avatar
0 votes
1 answer
89 views

Scenario: I have one largest (50MB - size) file and converted that into html file using third party tool. Now I wish to showcase converted HTML file into my webpage When trying this scenario my React ...
MADHAN BABU's user avatar
0 votes
0 answers
236 views

I am using for achieving virtualization. But not able to apply the property of sticky to the same. handleScroll(e, TableRef)} className="variable-size" > {RenderRowVirtualized} ...
Ajinkya Desai's user avatar
0 votes
1 answer
538 views

I'm working on a React project where I'm using the libraries react-window and react-window-infinite-loader to render a large list of project cards. Each project card contains an image, which is stored ...
Krisna's user avatar
  • 3,533
0 votes
1 answer
515 views

I have an app with news page, which i'd like to impletement infinite scrolling for. I'm using next 13, and i have app wide nav and footer setup via root layout. I'm trying to use react-window to set ...
Caffeine's user avatar
3 votes
0 answers
99 views

I am buliding an emoji picker as part of a larger react project and have encountered an issue. I have successfully built the emoji picker, but it is extremely slow This is because there are thousands ...
Gradyn Wursten's user avatar
3 votes
0 answers
557 views

I'm rendering a sidebar that can be filtered down every time someone types into the searchbar. A simplified version of my code is below. Everything works except for the fact that there are gaps when ...
wongx's user avatar
  • 13.6k
1 vote
1 answer
3k views

Context I would like to use react-virtualized Grid to create a responsive grid of cards. The data of the cards will be one dimensional (non 2D). The cards will each have a minimum width and they will ...
goss's user avatar
  • 41
1 vote
0 answers
159 views

I implemented react-window and react-virtualized-auto-sizer. My problem is that it crashes. It says Element type is invalid: expected a string (for built-in components) or a class/function (for ...
Joseph's user avatar
  • 7,875
1 vote
0 answers
48 views

I checked all the sandboxes for react-window (react-virtualized-auto-sizer, react-window-infinite-loader) They both use mock data Where should I place the code for async fetch/axios data for the <...
yeln's user avatar
  • 797
1 vote
1 answer
3k views

I'm trying to add react-window to my stack, however all examples require the width and height of the list to be statically defined like this: import { FixedSizeList as List } from 'react-window'; ...
Alk's user avatar
  • 5,597
1 vote
0 answers
423 views

I'm using <FixedSizeList> from react-window package inside TextField with the select property. The issue is that the onChange event of the TextField doesn't work with <FixedSizeList>. So I ...
Oron Bendavid's user avatar
0 votes
1 answer
2k views

I am not sure why this is happening but the InfiniteLoader makes calls to fetch items twice(one for items from 0-8 and then from 8-16) when I am just loading the page and not scrolling at all. Also, ...
Aakash Verma's user avatar
  • 4,044
0 votes
1 answer
214 views

In react-virtualized, there is a prop called "onSectionRendered" to define a function which will be called after cells have been rendered. What way is there to achieve this with react-window?...
user3601578's user avatar
  • 1,372
1 vote
2 answers
1k views

I am using react-window FixedSizedList and react-virtualized-auto-sizer Autosizer components to build a list/table UI element that may contain thousands of items that also receives new items via a ...
JavascriptLoser's user avatar
2 votes
1 answer
1k views

Problem I'm trying to achieve a behaviour, when merely changed items of the list are being updated and rerendered with new data. I wrote a component which is being updated when timer is off: import { ...
Juriy's user avatar
  • 595
0 votes
1 answer
468 views

Achievement goal Draw a large amount of data on the table Sticky header (scroll only the body) Sortable by clicking the cell in the header The data in that row can be updated by pressing the button ...
Nichons's user avatar
  • 11
0 votes
1 answer
709 views

I'm experimenting with the windowing technique in Next.js with Antd, and I made this simple app that has this index.tsx page: import { CSSProperties } from 'react' import type { NextPage } from 'next' ...
user2921009's user avatar
0 votes
1 answer
813 views

I am using react-table with react-window-infinite-loader and react-window for infinite scrolling. Initially the table has 20 items(data) on fetch from API. After adding a new data into my table it ...
Darwin Arugay's user avatar