You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I have a grid that has several columns and it is wide enough to cause some horizontal scrolling.
One of the columns has a tooltip.
When I have scrolled the column into view and hover over the individual cells nothing appears, unless the whole column is visible.
Please see the video below for how it appears.
Grid_tooltip_not_showing.mp4
Expected outcome
I would expect for the tooltip to appear even when the column is only partially visible.
You can use "Grid with Filters" example https://start.vaadin.com/app/p and set tooltip generation for one of the columns that can be hidden by scrolling
grid.addColumn("occupation").setTooltipGenerator(item -> "Occupation tooltip for " + item.getOccupation()).setAutoWidth(true);
Open web app which has a grid
Make window small enough so that the grid has horizontal scroll, and that the column with tooltips can be hidden.
Scroll to fully reveal the column with tooltips
Verify that you can see a tooltip when hovering over a cell in that column.
Scroll to hide part of the column with tooltips
Verify that you can no longer see tooltips when hovering over a cell in that column
Environment
Vaadin version(s): 24.6
OS: Linux Mint 22
Browsers
Chrome, Firefox
The text was updated successfully, but these errors were encountered:
Thanks for the issue. We had another problem reported previously at vaadin/web-components#7744 where tooltip wasn't shown correctly with not fully visible cell, so the current behavior is by design: vaadin/web-components#7749
Description
Hi,
I have a grid that has several columns and it is wide enough to cause some horizontal scrolling.
One of the columns has a tooltip.
When I have scrolled the column into view and hover over the individual cells nothing appears, unless the whole column is visible.
Please see the video below for how it appears.
Grid_tooltip_not_showing.mp4
Expected outcome
I would expect for the tooltip to appear even when the column is only partially visible.
Minimal reproducible example
Modification to "Grid with Filters" from https://start.vaadin.com/app/p
Steps to reproduce
You can use "Grid with Filters" example https://start.vaadin.com/app/p and set tooltip generation for one of the columns that can be hidden by scrolling
Environment
Vaadin version(s): 24.6
OS: Linux Mint 22
Browsers
Chrome, Firefox
The text was updated successfully, but these errors were encountered: