Hi,
It appears there is a typo in the
com.google.gwt.mobile.client.Scroller on line 399 which breaks
horizontal scrolling:
http://code.google.com/p/google-web-toolkit/source/browse/trunk/samples/expenses/src/main/java/com/google/gwt/mobile/client/Scroller.java#399
private boolean shouldScrollHorizontally() {
return horizontalEnabled && scrollSize.x < contentSize.y;
}
It should read:
private boolean shouldScrollHorizontally() {
return horizontalEnabled && scrollSize.x < contentSize.x;
}
I submitted an Issue #6317
http://code.google.com/p/google-web-toolkit/issues/detail?id=6317
Thanks,
Pavel
--
http://groups.google.com/group/Google-Web-Toolkit-Contributors