Answer the question
In order to leave comments, you need to log in
What is the correct way to pass a controller function to a second level directive in AngularJS?
There is the following markup:
<div ng-controller="ClientsCtrl">
<table-panel data="data" action-delete="client_delete(id)">
...
<data-table rows="rows" action-delete="???">
...
<table>
<tbody>
<tr ng-repeat="row in rows">
<td>
<a ng-click="entity_delete(row.id)">Delete</a>
</td>
</tr>
</tbody>
</table>
...
</data-table>
...
</table-panel>
</div>
controls.directive('tablePanel', function () {
return {
restrict: 'E',
scope: {
actionDelete: '&'
}
}
});
controls.directive('dataTable', function(){
return {
restrict: 'E',
scope:{
actionDelete: '&'
},
controller: function($scope){
$scope.entity_delete = function (id) {
$scope.actionDelete({id: id});
};
}
};
});
<data-table rows="rows" action-delete="???">
in the action-delete attribute? Answer the question
In order to leave comments, you need to log in
From simple options: use the controller definition in the notation ng-controller="Controller as controllerName", and call the controller method directly.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question