aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoonas Lehtinen <joonas.lehtinen@itmill.com>2007-10-02 16:00:46 +0000
committerJoonas Lehtinen <joonas.lehtinen@itmill.com>2007-10-02 16:00:46 +0000
commita72cd3b75407481c3e07d731c21b63042cfebfc1 (patch)
treeb17cf8d6e8c3a2b34f6fe5e4286d00ca1acf742c
parent69c2d7070d9aeb22bc6572e7449d8f1e45cdba76 (diff)
downloadvaadin-framework-a72cd3b75407481c3e07d731c21b63042cfebfc1.tar.gz
vaadin-framework-a72cd3b75407481c3e07d731c21b63042cfebfc1.zip
Tabsheet width=100% height=100% properties table width=100%
See #953 svn changeset:2424/svn branch:trunk
-rw-r--r--src/com/itmill/toolkit/demo/features/Feature.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/com/itmill/toolkit/demo/features/Feature.java b/src/com/itmill/toolkit/demo/features/Feature.java
index 482ad724a8..ae1c017a08 100644
--- a/src/com/itmill/toolkit/demo/features/Feature.java
+++ b/src/com/itmill/toolkit/demo/features/Feature.java
@@ -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();