Hi
I noticed that the problem appears when I bind the grid and then sorted it.
My initial approach was :
– get data from REST API
– bind data : $scope.gridSettings.apply(‘databind’, source);
– sort the grid : $scope.gridSettings.apply(‘sortby’, sortColumn, sortAscending)
I changed the logic to the following and now it works well :
– get data from REST API
– sort the data using a custom js class
– bind data : $scope.gridSettings.apply(‘databind’, source);
Regards