My next issue is that the directives scope is out of scope...for my controller... there are various properties that need to be set to gain full control of the directive; such as:
$scope.loadingAuditTrail = false;
I'm missing how to pass these items from my $scope into the directive.
I've tried adding ng-scope and ng-model but I'm still doing something wrong.
Custom Section Tabs
I have figured out how to add tabs to my custom section template using a umb-tabs directive and a tabs object in my model... with a properties array:
....
But can I add a tab via my own directive? as well as the tabs array?
something like:
EDIT: I figured out that in my view where I added the directive, I wasn't passing in "node", my call to the directive looks like this:
In my controller I define "node" on the scope:
My next issue is that the directives scope is out of scope...for my controller... there are various properties that need to be set to gain full control of the directive; such as:
I'm missing how to pass these items from my $scope into the directive. I've tried adding ng-scope and ng-model but I'm still doing something wrong.
is working on a reply...