I'm having 15,000 rows and want to display all the rows in a single page with or without pagination
Currently we are using ng-repeat and calling push when every record is being iterated.
I come across this link How to improve performance of ngRepeat over a huge dataset (angular.js)?
I don't want to use infinite scrolling as we have search and filters which needs to be done on the same page on the whole data set.
Could you please some suggestion or how to improve the peformance? Currently it takes a minute to load the records.
Thanks.