Want to handle the event of Window.ScrollEvent which belongs to the Explorer Application like iExplorer, Safari, Mozilla etc..
if try to use a panel or similar .. than i can do the calculations with getScrollHeight ( which is not available on window.ScrollEvent )
only available methods are ScrollTop , ScrollLeft , ClientHeight and OffsetHeight
com.google.gwt.user.client.Window.addWindowScrollHandler(_scrollHandler);
Window.ScrollHandler _scrollHandler = new Window.ScrollHandler()
{
@Override
public void onWindowScroll(com.google.gwt.user.client.Window.ScrollEvent event) { ......... }
};