Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
Making Description Tooltip appear immediately and movable
Hej guys,
what would I have to do if I want to change the description Tooltip included in most standard Vaadin Components to appear immediately upon mouseOver?
And what would I have to do if I want to make it follow the mouse while visible?
Or where would I have to start digging into?
Thanks in advance,
Samuel
The tooltip is created on the client side, in the class VTooltip. To customize it, you need to create your own class extending VTooltip and replace the old class using GWT Deferred Binding. If you do that, all Vaadin components will automatically use your class instead.