ui.bootstrap popover单击关闭 [英] ui.bootstrap popover close on click

查看:63
本文介绍了ui.bootstrap popover单击关闭的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的弹出框带有模板

<i class="fa fa-link" popover-placement="right" uib-popover-template="'newReferenceTemplate.html'" popover-title="New link"> Add new external reference </i>

因此,当我单击该链接图标时,会弹出一个带有此模板的弹出框

So when I click on that link icon, a popover opens witht this tamplate

<script type="text/ng-template" id="newReferenceTemplate.html">
  <label>Title</label> <br>
  <input ng-model="link.Title"> <br>
  <label>Url</label> <br>
  <input ng-model="link.Url"><br>
  <i class="fa fa-floppy-o" > Save </i>
</script>

当我按下该软盘"图标时,我想关闭弹出窗口.有什么办法吗?

When I press that 'floppy' icon, I'd like to close the popover. Are there any ways of doing this?

我所能找到的文档上的都是popover-is-open值,但是我不知道我是否可以使用它,有什么想法吗?

All I can find on documentation is the popover-is-open value, but I don't know if I can use this somehow, any thoughts?

推荐答案

步骤1:popover-is-open="isOpen"添加到触发器链接.

Step 1 : Add popover-is-open="isOpen" to the trigger link.

<i class="fa fa-link add-link" 
        popover-placement="right" 
        uib-popover-template="'newReferenceTemplate.html'" 
        popover-is-open="isOpen"
        popover-title="New link"> Add new external reference </i>

第2步::单击弹出框内的软盘图标时,将isOpen设置为false:

Step 2 : When you click the floppy icon inside the popover, set isOpen to false:

这是弹出框的保存图标:

This is the save icon of the popover:

<i class="fa fa-floppy-o" ng-click="save()"> Save </i>

这在控制器中:

$scope.save = function () {
  $scope.isOpen = false;  
};

请参见 朋克车

See plunker

这篇关于ui.bootstrap popover单击关闭的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆