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

I'm getting started with writing directives and I'm pretty sure I grasp the whole concept of defining an 'isolate' scope for a directive.

My directive numberRoulette is supposed to animate each digit (or a supplied number of digits through attribute fields="some-number-here") in a supplied number with random numbers. Every elapsed second, one digit stops animating and is set to its intended number. It 's a bit like a slot machine..

<div ng-app="myApp">
  <div ng-controller="MasterCtrl">
    <span number-roulette fields="10" ng-model="number">
      {{number}}
    </span>
  </div>
</div>

The problem I'm running into is that when I make a two-way binding between the directive scope and a scope used by a controller MasterCtrl, my values stop displaying.

app.directive('numberRoulette', function($timeout) {
  return {
    restrict: 'A',
    scope: {showNumber: '=ngModel'},
    ...
  };
});

function MasterCtrl($scope) {
  $scope.number = 1000;
}

JSFiddle: http://jsfiddle.net/nguyening/aX6Zm/3/

share|improve this question

1 Answer

up vote 3 down vote accepted

Use {{showNumber}} or move {{number}} outside the span.

Inside the span, you have access to the directive scope properties only (e.g., showNumber), because an isolate scope was created for the directive.

Outside the span, you have access to the controller scope properties, e.g., number.

Update: ng-model isn't required here. Any attribute will do, e.g.:

<span number-roulette fields="10" model="number">

Then in the directive:

scope: {showNumber: '=model'},
share|improve this answer
Working jsfiddle: jsfiddle.net/aX6Zm/4 – pavelgj Jan 8 at 22:51
+1 as this is the right answer. But, for completeness, you could also use transclusion. – Josh David Miller Jan 8 at 23:05
1  
As per @Josh's suggestion, here is a jsfiddle that uses transclusion instead: jsfiddle.net/mrajcok/aX6Zm/6. With this solution, we use {{number}} inside the span. – Mark Rajcok Jan 9 at 3:39
followup: say I remove the attribute ngModel from the span. If I'm transcludeing, how do I use the function passed into compile to access the sibling scope? – actaeon Jan 9 at 4:07
@actaeon, I'm not sure I follow you, but I think you're considering how to access the number property from the transcluded scope (since it prototypically inherits from the parent/controller scope). I don't think this is how the transclude linking function is normally used. From what little I've read about that function, it is normally only used to preprocess the content (i.e., "{{number}}") prior to being transcluded. See this SO question. – Mark Rajcok Jan 9 at 4:54
show 3 more comments

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.