I got this one from stack exchange 
<http://stackoverflow.com/questions/18139375/angularjs-scope-watch-in-a-directive-isnt-being-called-after-ajax-request>
 
and thought I'd re-post it in hopes it save someone else some time.

                scope.$watch( scope.value, function () {
                    // doesn't work, or only works the first time.
                });


                scope.$watch( function() { return scope.value; }, function 
() {
                    // works!
                });

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to