-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
enhancementNew feature or requestNew feature or request
Description
It would be useful if each Badge could display a tooltip when hovering over it.
As a workaround I made it work with this code:
Span span = new Span(i);
Tooltip.forComponent(span).withText(getTranslation(
"snaplets.usermanager.viewsview.hardcodedroles.tooltip"))
.withPosition(Tooltip.TooltipPosition.TOP_START);
Badge b = new Badge(span);
b.addThemeName(BadgeVariant.CONTRAST.getVariantName());
b.getStyle().setCursor("pointer");
paodb
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request
Type
Projects
Status
Under consideration