Reputation: 326
I was wondering if it is at all possible re-render a specific element on a html page or the entire page itself whilst still keeping the controller the same. Thanks for any help.
Upvotes: 0
Views: 6001
Reputation: 322
Calling $scope.$apply() from within your controller will re-render.
$scope.$apply()
Upvotes: 2