Announcement

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

    #16
    Found the problem. It was not the html file, CSS, or GWT version.
    The test case I was given was using the GWT RootPanel to insert a VLayout into a specific <DIV> by element ID.

    The issue can be reproduced using any of these options:

    Code:
    RootPanel.get("testGridContainer").add(vlayout);
    RootPanel.get().add(vlayout);
    RootLayoutPanel.get().add(vlayout);
    Instead, simply calling the draw method on the main container fixes everything:
    Code:
    vlayout.draw();

    Comment


      #17
      That's interesting, but, we tested that way too, and it didn't reproduce a problem. That suggests there is something special about the DIV you're inserting into, or its surrounding content (CSS, etc).

      Anyway, we're glad you've got a working solution again.

      Comment

      Working...
      X