Announcement

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

    Smartgwt.mobile: Blank screen until browser window is resized

    When I start my application, a blank screen is shown.
    When I resize the browser window, the app shows.

    This even occurs with very simple code:

    public void onModuleLoad() {
    Panel rootPanel;
    rootPanel = new Panel("Reym");
    rootPanel.setWidth(Window.getClientWidth());
    rootPanel.setHeight(Window.getClientHeight());
    RootLayoutPanel.get().add(rootPanel);
    rootPanel.addMember(new Button("sdasfasf"));
    }

    I tested this with different versions of the SDK.

    smartgwt-mobile-1.0d_2013-01-18.zip worked correct.

    With versions
    smartgwt-mobile-1.0d_2013-01-19.zip
    ...
    smartgwt-mobile-1.0d_2013-01-23.zip
    I have the behaviour described above.

    #2
    What device and OS version are you using?

    Comment


      #3
      windows 7 with chrome and safari
      IPAD 1 with IOS 5.1 and safari

      Comment


        #4
        This is fixed for tomorrow's nightly.

        Comment

        Working...
        X