I want to pass my ng-model from the \'outer-directive\' to an \'inner-diretive\' (which is contained in the outer-directive template).
What is the correct way for doing
I think you need to pass the form in the directive and set the form dirty manually.
scope: { directiveForm:"=" }, link: function (scope, $elem, $attrs){ scope.directiveForm.$setDirty(); }