SmartGWT.mobile beta:
It does not considered Standalone mode. As a result in standalone mode about 40 bottom pixels of the content of the ScrollablePanel cannot be shown (hidden behind TabBar)
Code:
public class ScrollablePanel extends Panel implements HasScrollHandlers {
...
public void onStart(Event event) {
...
wrapperHeight = Window.getClientHeight()-(46+(isIPhone() ? -10 : 50));
...
}
...
}
Comment