admin管理员组文章数量:1341751
I'm using Bootstrap Vue with Vue.js and am experiencing a problem where I'm iterating over some items and displaying them to the user.
The issue is, when a user clicks on one of the popovers, every popover that was opened gets closed (as I desire), but when the user clicks outside the focus area of the targeted (opened) popover, it doesn't close anymore.
It looks like the opening animation runs every time the user clicks on the targeted popover.
Here is the code:
<template>
<div>
<div class="row" v-for="(n, i) in 5" :key="n">
<div :id="'popover' + visitor.id + '-' + i" @click="$root.$emit('bv::hide::popover')">
<div class="card">
<b-popover :target="'popover' + visitor.id + '-' + i">
<template slot="title">
Edit image
<button
class="close-popover"
@click="$root.$emit('bv::hide::popover', 'popover' + visitor.id + '-' + i)"
>X</button>
</template>
</b-popover>
</div>
</div>
</div>
</div>
</template>
I'm using Bootstrap Vue with Vue.js and am experiencing a problem where I'm iterating over some items and displaying them to the user.
The issue is, when a user clicks on one of the popovers, every popover that was opened gets closed (as I desire), but when the user clicks outside the focus area of the targeted (opened) popover, it doesn't close anymore.
It looks like the opening animation runs every time the user clicks on the targeted popover.
Here is the code:
<template>
<div>
<div class="row" v-for="(n, i) in 5" :key="n">
<div :id="'popover' + visitor.id + '-' + i" @click="$root.$emit('bv::hide::popover')">
<div class="card">
<b-popover :target="'popover' + visitor.id + '-' + i">
<template slot="title">
Edit image
<button
class="close-popover"
@click="$root.$emit('bv::hide::popover', 'popover' + visitor.id + '-' + i)"
>X</button>
</template>
</b-popover>
</div>
</div>
</div>
</div>
</template>
Any help is appreciated!
Share Improve this question asked Mar 19, 2019 at 8:20 hakamanhakaman 4211 gold badge5 silver badges9 bronze badges5 Answers
Reset to default 7You can set triggers="click blur"
on the popover. This will close it when the user clicks outside of the popover or on the target.
You can check more HERE.
You can use this function in created
created(){
document.getElementsByTagName('body')[0].addEventListener('click', e => {
this.$root.$emit('bv::hide::popover')
});
},
Add this Jquery to your code and it will work, probably.
$('body').on('click', function (e) {
$('[target=popover]').each(function () {
if (!$(this).is(e.target) && $(this).has(e.target).length === 0 && $('.popover').has(e.target).length === 0) {
$(this).popover('hide');
}
});
});
Also you can try this:
You can add this to your code and try.
<a class="close" href="#">Close</a>
Also add this jquery:
$('.close').click(function() {
$(".class").fadeOut(300);
});
A possible solution is the vue directive v-click-outside.
Basically, you just install it: npm install --save v-click-outside
And use:
<template>
<div v-click-outside="onClickOutside"></div>
</template>
add the attribute tabindex='0' to the click element
<span id="popover" tabindex='0'>test</span>
add set the triggers to 'click blur'
<b-popover
target="popover"
title="Prop Examples"
triggers="click blur"
content="Embedding content using properties is easy"
/>
本文标签: javascriptPopover not closing when clicking outside its focus areaStack Overflow
版权声明:本文标题:javascript - Popover not closing when clicking outside its focus area - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743636375a2513966.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论