if i create a panel with a HorizontalLayout, then the inner table is
not expandet to a width of 100% in firefox like in IE/GWTShell.

setting the width to 100% of the panel dont resize the inner table
with class "x-table-layout" to 100%. so using horizontal layout is
useless? it should be work as same as columnlayout, or not?


code snippet:


     somePanel.add(new Panel() {

      {
        setId("testId");
        setWidth("100%");
        setLayout(new HorizontalLayout(50));
        add(new HTMLPanel("test1"));
        add(new HTMLPanel("test2"));
      }
    });


PS:
as workaroud it works with columnlayout - there is a 100% with FF and
IE/GWTShell

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"GWT-Ext Developer Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/gwt-ext?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to