我正在使用带有外部点击触发器和弹出模板的AngularJS UI Bootstrap popover。这一切都按预期工作,除了在我的模板中我有一个ng-repeat,可以选择删除重复中的一个项目。虽然这一切都有效,但一旦项目被移除,弹出窗口就会关闭 - 就好像它认为我已经在弹出窗口外点击了一样。这是一个演示:http://plnkr.co/edit/vAk3y779eEmLSmIg9kb4?p=preview
的插图JS:
angular.module('ui.bootstrap.demo', ['ngAnimate', 'ui.bootstrap']);
angular.module('ui.bootstrap.demo').controller('PopoverDemoCtrl', function ($scope, $sce) {
$scope.dynamicPopover = {
templateUrl: 'myPopoverTemplate.html',
};
$scope.checklistitems = [
{check: false, text: "item 1"},
{check: false, text: "item 2"},
{check: false, text: "item 3"}
];
$scope.delete = function (item) {
var index;
index = $scope.checklistitems.indexOf(item);
$scope.checklistitems.splice(index, 1);
console.log("yo delete: " + item.text)
}
});
HTML:
<html ng-app="ui.bootstrap.demo">
<head>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.5.0/angular-animate.js"></script>
<script src="//angular-ui.github.io/bootstrap/ui-bootstrap-tpls-1.2.5.js"></script>
<script src="example.js"></script>
<link href="//netdna.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div ng-controller="PopoverDemoCtrl">
<span>some text to pad</span>
<button uib-popover-template="dynamicPopover.templateUrl"
type="button" class="btn btn-default"
popover-placement="bottom"
popover-trigger="outsideClick"
>Popover With Template</button>
<script type="text/ng-template" id="myPopoverTemplate.html">
<div ng-repeat="item in checklistitems">
{{item.text}}
<button ng-click="delete(item)">delete</button>
</div>
</script>
</div>
</body>
</html>
答案 0 :(得分:4)
我遇到了同样的问题,我发现当popover中的HTML发生变化时会出现问题!
我将ng-if
更改为ng-show
,点击按钮后弹出窗口没有关闭。
您的解决方案可能是标记已删除的项目并隐藏它们,并在弹出窗口关闭时进行真正的“删除”!
答案 1 :(得分:0)
删除popover-trigger="outsideClick"
,它应该有效。