I was not very clear in my last question. However after seeing the response from the server asking the same again. The html is not getting rendered here how to fix this
AppControllers.controller('create', ['$scope','$sce', function ($scope,$sce){
var myhtml = "<div class="modal-body " id="mymodal">
<form name="form" novalidate="" class="add-user">
<fieldset>";
$scope.myhtml= $sce.trustAsHtml(myhtml)
console.log($scope.myhtml)
/* Output of console.log
<div class="modal-body " id="mymodal">
<form name="ticketform" novalidate="" class="add-user-from ">
*/
}
<div ng-bind-html="myhtml"></div>