question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

a big tooltip in b-table blinks

See original GitHub issue

I 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:closed
  • Created 5 years ago
  • Comments:9 (4 by maintainers)

github_iconTop GitHub Comments

1reaction
tmorehousecommented, Nov 26, 2018

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 (or position-relative) to your div with the tooltip on it?

0reactions
iruizeguilazcommented, Jan 7, 2019

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?

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found