i use:
popup.showRelativeTo(widget...)

in my debugger i can see that during the callback:

  public final void showRelativeTo(final UIObject target) {
    // Set the position of the popup right before it is shown.
    setPopupPositionAndShow(new PositionCallback() {
      public void setPosition(int offsetWidth, int offsetHeight) {
        position(target, offsetWidth, offsetHeight);
      }
    });
  }


offsetWidth and height are wrong (too small). this seems to have been a
problem since at least 2006 (google found some old stuff) and causes the
popup to be rendered to the lower right into non existing space instead of
to the left or top where it might still fit. is it fixable? if yes, what
can i do?

i tried different browsers (firefox & crhome), but the error is the same.

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

Reply via email to