]> source.dussan.org Git - vaadin-framework.git/commitdiff
Tabsheet width=100% height=100% properties table width=100%
authorJoonas Lehtinen <joonas.lehtinen@itmill.com>
Tue, 2 Oct 2007 16:00:46 +0000 (16:00 +0000)
committerJoonas Lehtinen <joonas.lehtinen@itmill.com>
Tue, 2 Oct 2007 16:00:46 +0000 (16:00 +0000)
See #953

svn changeset:2424/svn branch:trunk

src/com/itmill/toolkit/demo/features/Feature.java

index 482ad724a8ca980ba9fec49566ccc13413009fde..ae1c017a083ad42236d096abf3521b20910be085 100644 (file)
@@ -94,6 +94,11 @@ public abstract class Feature extends CustomComponent {
                        layout.addComponent(demo);
 
                ts = new TabSheet();
+               
+               ts.setWidth(100);
+               ts.setWidthUnits(TabSheet.UNITS_PERCENTAGE);
+               ts.setHeight(100);
+               ts.setHeightUnits(TabSheet.UNITS_PERCENTAGE);
 
                // Description tab
                String title = getTitle();