コントローラーから html コンテンツをレンダリングしようとしていますが、Angular ディレクティブ ng-hide が機能しません。次のコードを試しましたが、この方法で html としてバインドすることに問題はありますか
var htmlContent = "<Div class='vzone' ng-hide='true' id='parent_" + ViewerZones[CurrentIndex].Id + "'...'></div>";
$scope.PageContent = $sce.trustAsHtml(htmlContent);
<div ng-bind-html="PageContent"></div>