You need to tell angular that the values have changes:
$scope.loadNewFilter = function (){
$scope.filter = [1,2,3];
$scope.$apply();
}
You need to tell angular that the values have changes:
$scope.loadNewFilter = function (){
$scope.filter = [1,2,3];
$scope.$apply();
}