在我的应用程序中单击按钮时不显示模式弹出窗口。仅背景显示为淡出,但不显示弹出窗口。我通过$ modal.open从AngularJS控制器打开弹出窗口。弹出窗口是我要打开的另一个.html页面。下面是我的代码。请检查并告知我所缺少的内容。
控制器:
$scope.OpenPopup= function () {
$scope.modalInstance = $modal.open({
templateUrl: "Main/views/addEmployer.html",
scope: $scope
});
}
addEmployer.html:
<div>
<h4>Just something random here</h4>
</div>
<div>
<button class="btn btn-primary" ng-click="ok()">OK</button>
<button class="btn btn-warning" ng-click="cancel()">Cancel</button>
</div>
Index.html
<script src="//cdn.rawgit.com/angular-ui/bower-ui-grid/v3.0.6/ui-grid.min.js"></script>