I am using KendoUi tree list with AngularJs. I have large amount of data (~3000 +) which is being updated after each 4 seconds. I have observed that whenever records are updated, it freeze the screen. Is there any solution?
Here is dojo link.Steps to run the test app:
1: Click on Add Data button
2:Turn on "Auto update". It will update records after 4 seconds. Now observe the behavior.
Update code is as follow:
var record = $scope.gridDataSource.data()[100];
record.Title = "Updated";
$scope.gridDataSource.pushUpdate(record);
Thank you.