Hii,
i have tried to load a HTML page in popup using ng-include but it is not loading. that HTML page contain a calender of jqwidgets.here is the code.
<script type=”text/javascript”>
var app=angular.module(“myApp”,[“jqwidgets”]);
app.controller(“calenderController”, function ($scope) {
var dialog;
$scope.imageClick=function(){
alert(“hello”);
dialog.open();
};
$scope.dialogSettings = {
created : function(args) {
dialog = args.instance;
},
resizable : false,
position : {
left : popup.offsetLeft + 300,
top : popup.offsetTop
},
width : 400,
height : 300,
autoOpen : false
};
});
</script>
</head>
<body ng-app=”myApp” ng-controller=”calenderController”>
<center>
<input type=”text”>

</center>
<jqx-window jqx-on-close=”close()” jqx-create=”dialogSettings” jqx-settings=”dialogSettings”>
<div id=”popup”>Edit Dialog</div>
<div style=”overflow: hidden;”>
<div ng-include=” ‘Calender.html’ “></div>
</div>
</jqx-window>
</body>
</html>