↧
Answer by Ammar Hasan for Dynamically Created Html table rendering slow for...
We ran out in similar scenarios, where we had more than 30000 records to render on the same page, API was doing good but UI became pathetic in terms of performance. Chrome and Firefox survived somehow...
View ArticleAnswer by Satinder singh for Dynamically Created Html table rendering slow...
Applying pagination is best solution, else you need to optimise your code (though the performance is negligible, but help to prevent browser crash if you have more data)For example :$.each(dataSet,...
View ArticleDynamically Created Html table rendering slow for huge records
This is how I am creating my table & rendering into the aspx page after getting the data from from database by ajax call. I checked the stored procedure execution Time which is only 1.5 seconds...
View Article