I have an application which is used for data analysis and I\'m having a few performance issues with the creation of the table. The data is extracted from documents and it is
Displaying that many rows is causing the browser's rendering engine to slow down, not the JavaScript engine. Unfortunately there's not a lot you can do about that.
The best solution is to just not display so many rows at the same time, either through pagination, or virtual scrolling.