How to hide tooltip on mouse hover on a ThemeResource?

Hi,

I’m new to Java n Vaadin too, so plz bear with my knowledge.
I am facing a issue with ThemeResource. I have added a icon using ThemeResource in a Table Row Header. Hovering mouse over the icon is showing a tooltip “icon”.
I don’t want to display this tooltip. How to hide it? I’m using vaadin library 6.7.4.

I thought of overriding getDescription() method of AbstractComponent class but ThemeResource does not inherit AbstractComponent !

Thanks.

Try .setDescription(null) or setDescription(“”)