Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to have angular watch the $viewValue of a controller from inside a directive.

fiddle: http://jsfiddle.net/dkrotts/TfTr5/5/

function foo($scope, $timeout) {
    $scope.bar = "Lorem ipsum";

    $timeout(function() {
        $scope.bar = "Dolor sit amet";
    }, 2000);
}

myApp.directive('myDirective', function() {
    return {
        restrict: 'A',
        require: '?ngModel',
        link: function (scope, element, attrs, controller) {
            scope.$watch(controller.$viewValue, function() {
                console.log("Changed to " + controller.$viewValue);
            });
        }
    } 
});

As is, the $watch function is not catching the model change done after 2 seconds from inside the controller. What am I missing?

share|improve this question

1 Answer

up vote 4 down vote accepted

$watch accepts the "name" of the property to watch in the scope, you're asking it to watch the value. Change it to watch attrs.ngModel which returns "bar", now you're watching scope.bar. You can get the value the same way you were or use scope[attrs.ngModel] which is like saying scope["bar"] which again, is the same as scope.bar.

 scope.$watch(attrs.ngModel, function() {
            console.log("Changed to " + scope.$eval(attrs.ngModel));
 });
share|improve this answer
Working fiddle since SO no longer likes fiddles in the answer: jsfiddle.net/TfTr5/7 – Jonathan Rowny Jan 28 at 17:59
3  
I think as long as you include a code sample somewhere in your answer SO will allow the fiddle link. – Mark Rajcok Jan 28 at 22:02
1  
ok, except that there should be console.log("Changed to " + scope.$eval(attrs.ngModel)); – user271996 Apr 22 at 16:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.