I\'m using ng-repeat to display a collection of values. My filter options changes according to an ajax call to server. How can I refresh the ng-repeat after the filter parameter
You need to tell angular that the values have changes:
$scope.loadNewFilter = function (){ $scope.filter = [1,2,3]; $scope.$apply(); }