Reputation: 11
I am trying to render a datatable on Angular with over 10000 rows pulled from an API. Performance is very slow and my browser keeps crashing.
I came across different opinions: Lazy loading, ng-table, bindonce...
What would be the best option?
I am using angular-datatables version 1.9.4 http://l-lin.github.io/angular-datatables/#/welcome
Thank you
Upvotes: 1
Views: 2430
Reputation: 2178
You should pay attention to this post :
How does data binding work in AngularJS?
And especially the point of avoiding loading more than 2000 binded data.
In practice the options are :
Upvotes: 1