a big tooltip in b-table blinks
See original GitHub issueI use several tootltips in my tables. They seemed to work ok but I have realised that sometines, when the tooltip is big and it goes down more than the table size, it blinks constantly and it is imposible to see the tootltip…
I am using the last version of vue and boostrap.
the code of the tootltip
<template slot="title" slot-scope="data">
<div v-b-tooltip.hover :title="data.item.description"> {{ data.item.title }} </div>
</template>
I have also tested it with the tag em instaead of div
the definition of the tabla
<b-table striped hover responsive
:current-page="table.currentPage"
:items="calculatedValues"
:per-page="table.perPage"
:fields="tableColumns"
:sort-desc.sync="table.sortDesc"
:sort-by.sync="table.sortBy">
thanks
Issue Analytics
- State:
- Created 5 years ago
- Comments:9 (4 by maintainers)
Top Results From Across the Web
Tooltip flickering on hover - Material Design for Bootstrap
i.e. the tooltip appears but it is shifted by a few pixels so it appears over the wrong area.
Read more >Twitter Bootstrap Tooltip: flickers when placed on top of button ...
This one button displays the tooltip with a continuous flickering, the tooltip itself covers part of the button (instead of being completely on ......
Read more >ToolTip Flickering on Mouseover in Kendo UI for jQuery - Telerik
I've added a ToolTip widget to display additional information when the user mouses over the tile. The ToolTip widget is working, however, when...
Read more >DataTable Tooltips | Dash for Python Documentation | Plotly
DataTable Tooltips allow you to provide additional information about table cells or headers when hovering your mouse over cells.
Read more >Using tooltips in tables or lists - jQuery TOOLS
We have only one tooltip element and multiple triggers. Each row has a delete.png image which is configured to work as a trigger...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Is possible that something is causing your table data to be redrawn/repainted, which might cause the tooltip to disappear and reappear quickly?
Have you tried using the component version of tooltip instead of the directive version?
It also could be a Popper.js issue dealing with calculating the tooltip position in a deeply nested table.
Could you try adding the class
position-static
(orposition-relative
) to yourdiv
with the tooltip on it?ok, thanks for the advice fopr the future but as I said in a previous comment I could handled the problem by using v-b-tooltip.html.right --> in this way the tooltip does not blinck. It is ok right now in my production environtment so I prefer not chaging anything that is working 😃 Maybe I should have clossed this post when I put that comment, should’t I?