Thursday, October 27, 2011

Tool Tips using Ext Gwt - Sample Code


Technology blog from Bangladesh

Tool Tips is a used to provide the help information to make the user friendly for the end user We have different kinds of Tool tips in Ext Google web toolkit.
Tool TIps 2 Ext GWT 2.2.5 Explorer

  1. Basic - Only simple information displayed only if you hover your mouse to that button
  2. Closable - information displayed on your mouse hover with closable x button appear on the above of the information message and message will not closed until you click the x button
  3. Mouse Tracking - Where you mouse moves the message will move 
  4. Anchor - Its same like basic information but your message will provide an anchor to the information menu to the selected widget
  5. Custom - You can create it with your wish

Tool Tips Ext GWT 2.2.5 Explorer


For Further Reading,

3 comments:

Srinivas on November 19, 2012 at 4:04 AM said...

Thanks for the article.
I am having an issue with tooltip on a labelfield. When the text length exceeds 500px, the tooltip is having issue with border. Till 500px everything renders properly. But after that, it misses the border line.

If you know any solutions to this problem, please share it.
Thanks.
Srinivas

Technology Blog on November 19, 2012 at 5:05 AM said...

Hello Srinivas,
Customize the tooltip with css stylename.

for example.
ToolTipConfig obj=new ToolTipConfig();
obj.setStyleName("Your css style id or name");

Srinivas on November 26, 2012 at 3:34 AM said...

Thank you for the reply.

I see that setStyleName is not available for ToolTipConfig class.
You meant some other method?

Post a Comment