Bootstrap-popover is a small overlay of content that is used to display secondary information of any element when it is clicked by a user
Questions tagged [bootstrap-popover]
337 questions
0
votes
1 answer
Bootstrap Popover fail with ajax
i would like use the Bootstrap Popover with ajax templates. The next script running good,...
$('.popover-trigger').bind('click', function(k) {
var e=$(this);
title="Jeepieee"
…

Moo
- 87
- 6
0
votes
2 answers
Popover in Bootstrap table with filter control not working (after fltering)
I have set a bootstrap table with the filter control extension. The table where I want to filter offers many popovers and tooltips. However, they stop working after filtering. What can I do to re-activate them?
An example of my code can be seen here…

Ralf Jahr
- 312
- 2
- 18
0
votes
1 answer
Showing Bootstrap Datetimepicker inside popover
I am using this code to fire the popup:
HTML
0
votes
1 answer
Bootstrap popover inside another div
I have a boostrap row with two columns. The first column has some input controls. I want when I click some control to display a popover to the right in the second column.
Ideally the arrow to be at the end of first column and title with content…

albert
- 1,493
- 1
- 15
- 33
0
votes
1 answer
AngularJS: Stop page refresh on click of button which shows popover onclick
I am working on angularjs website and want to avoid page refresh on click of popover.Using bootstrap UI popover,to display list of actions.
Page reload for the very first click on popover.
My html file:
0
votes
1 answer
How to show bootstrap popover on svg path tag
I have one svg file and multiple path in that ,
I want bootstrap popover after hover on path tag in svg file but i dont know how to use bootstrap popover on svg path tag.
here is my code :-

pratik
- 11
- 1
- 4
0
votes
1 answer
Angular UI Calendar popover content disappears on Drag / Drop / Resize / ChangeView
I am new to AngularJS, and I have been trying to modify the AngularUI Calendar but I ran into some issues while using Bootstrap Popovers to modify the events when clicked.
I want the default view to be agendaWeek, which is working fine, but as soon…

Debopam Chanda
- 26
- 5
0
votes
2 answers
Using bootstrap popover callback
I'm currently using bootstrap popovers to add some additional fields to my form. To format my select boxes, I need to take advantage of the popover callback, however I seem to be unable to get the callback to fire. If you prefer to use jsfiddle,…

neanderslob
- 2,633
- 6
- 40
- 82
0
votes
1 answer
Bootstrap popover in modal and input-group-addon
I can't get Bootstrap 3.3.5 popover to work. I want the popover to become visible when hovering the input-group-addon, but nothing happens.
My current code:
Javascript:
$(document).ready(function () {
$("[data-toggle=popover]").popover({…

robbannn
- 5,001
- 1
- 32
- 47
0
votes
1 answer
Bootstrap's popover doesn't open when it has been closed from another element
I have just one element that triggers a popover, and another element that closes it. If the popover is closed by this another element, then the next time I click the trigger, the popover won't show. I have to click it twice in order to see it…

mariogl
- 1,195
- 1
- 10
- 24
0
votes
1 answer
Does bootstrap popover have a DOM loaded event, or equivalent way to find out?
I'm creating a bootstrap popover in javascript on an element, and I need to do some work after the popover DOM has been written. I have the following so far.
// bootstrap popover
element.popover({
…

Simon Willan
- 378
- 3
- 14
0
votes
1 answer
bootstrap 4 popover stay open on hover
I was using this code to keep popovers stay open on hover:
var originalLeave = $.fn.popover.Constructor.prototype.leave;
$.fn.popover.Constructor.prototype.leave = function(obj){
var self = obj instanceof this.constructor ?
obj :…
user5979874
0
votes
1 answer
Showing popover for the second time changes its position
I have a function which creates popovers in my page, retrieving the content from an AJAX call. During the creation my function changes the popover position (it is page-wide, so I set to 0 the left attribute and move the arrow to point to my…

frollo
- 1,296
- 1
- 13
- 29
0
votes
1 answer
bootstrap popover on input remove title
I'm using bootstrap with bootstrap validator. I add error inside popover but when I add title to the input it appear in popover.
I need popover without title but I want to add titles to inputs.

user3003810
- 941
- 3
- 18
- 45
0
votes
1 answer
Bootstrap popover doesn't work inside a table
I am trying to use bootstrap popup for dynamically generated table. In the table there is a column name users and it has number of users for each item.
Eg: table structure
item name | adress | users
bla..blaa | bla.. | 4
Now I need to…

user3733831
- 2,886
- 9
- 36
- 68