Hello,

 I would like to create a ToolTip effect that will display above a
dialog box.  The current code which I'll leave as a snippet here, puts
the text behind a dialog instead of top.   This code is based on a
site giving a ToolTip example. Advice on this is greatly appreciated.
Also, likes to a specific web-site page is appreciated too.

Alan

--- minimal code snippet here --
public class ToolTip extends PopupPanel {

  public ToolTip(String message, int x, int y){
      super(true);
      this.setPopupPosition(x, y);
      this.setAnimationEnabled(true);
      this.add(new Label(message));
      this.setStyleName("toolTip");
      this.show();
    }
    //NOTE code to hide remove to make this shorter.
}



-- end --

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to