how to do ng-bind-html from a directive?

Asked

Viewed 1,231 times

1

<!-- ng-bind-html de uma diretiva customizado não funciona -->
<span ng-bind-html="customDirective"></span>


<!-- é renderizado -->
<choices-tab></choices-tab>

//Assim funciona:
$scope.customDirective = '<div class="alert alert-danger">teste</div>';

//Se eu fazer o ng-bind-html de uma diretive não funciona; não é renderizado nada
$scope.customDirective = '<choices-tab></choices-tab>';


angular.module('app')
.directive('choicesTab', function(){
    return {
        templateUrl: '../choices.html',
        link: function(){

        }
    }
});

ps. The Directive works normally without the ng-bind-html

1 answer

0


Browser other questions tagged

You are not signed in. Login or sign up in order to post.