Imagine having a collection with 5000 records and only updating one record from it. Will the browser render all 5000 entries again?
ng-repeat="item in ctrl.employeeData"
After receiving updates for individual records, it takes between 2 to 5 seconds to render those items in the browser.
Does ng-repeat rebuild everything from scratch?
Please provide suggestions for a solution.
I prefer not to use pagination or lazy loading. I want to display all records at once.