List of usage examples for com.google.gwt.user.client Window getScrollTop
public static int getScrollTop()
From source file:virtuozo.interfaces.Component.java
License:Apache License
public C scrollTo() { double left = Window.getScrollLeft() + this.left(); double top = Window.getScrollTop() + this.top(); Window.scrollTo((int) left, (int) top); return (C) this; }