Hi Keith, You can wrap react-virtualized, but it won't land you the speed you need.
10.000 rows. that's a boatload of data. I would create a virtual lens over the table. The table is a big 2dimensionl array. You can sort filter and so on on the array. The lens is a viewport to this array. In your case, it's probably simpler as you only have to travel the y-axis. So, you only show like 10 to 20 rows at a time, but you make it kind of the viewport to the data. I have done this in the past, and with AngularJS too. Not a really easy solution, but it works, and it will give you the performance you need. (I had a dataset of almost 1500 columns and close to 100.000 rows, this one worked lag-free inside AngularJS app. implemented in native JS and DOM, all data was maintained by the angular app) Regards Sander -- You received this message because you are subscribed to the Google Groups "Angular and AngularJS discussion" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
