I\'m trying to pass the $scope variable values to a custom directive as attribute, but it\'s not working.
Here is the HTML code:
I suppose what you want to do is injecting scope object from controller to your directive. So you can define your directive as
app.directive('checkList',function(){
return {
restrict:'E',
scope: {
name: "="
}
template: '{{name}} Yes No',
link:function(scope,elem,attrs){
}
};
}
And in your view, you can reference your directive as