Home > Mobile >  React rendering a table, it takes so much time on scripting?
React rendering a table, it takes so much time on scripting?

Time:07-11

When rending a table in react, it takes so much time to render for scripting. Is anyone fixed the same issue before? Nearly 10000 records need to display in table.

Edit bvaughn/react-window: fixed-size-list-vertical (forked)

CodePudding user response:

Hi it’s hard for browser to render so much data in one pass you need some virtualisation for the table, like this lib https://github.com/bvaughn/react-virtualized

  • Related