Is there a way to stop a kendo element from rerendering and triggering the databound event while i'm updating the data?
I'm looping through the data to update a field. but everytime a field is changed, the element rerenders and triggers the databound
angular.forEach($scope.list.dataSource.data(), function (item) {});
Is it possible to only render and the databound be triggered only after the loop and not while looping?