Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Mobile: ScrollablePanel calculates scroll limits incorrectly in standalone mode

    SmartGWT.mobile beta:

    Code:
    public class ScrollablePanel extends Panel implements HasScrollHandlers  {
    ...
       public void onStart(Event event) {
       ...
          wrapperHeight = Window.getClientHeight()-(46+(isIPhone() ? -10 : 50));
       ...
       }
    ...
    }
    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)

    #2
    Looks like you've got an older version. Please down a more recent build from here - if you posted any other issues that were happening with that older version, please re-test once you've upgraded.

    Comment


      #3
      Cool, new version helped - old issues are gone. But I have to almost re-write UI to accommodate changes in the new version :)

      Comment

      Working...
      X