From: Joonas Lehtinen Date: Mon, 29 Jan 2007 09:24:53 +0000 (+0000) Subject: Added PERCENTAGE width/height support X-Git-Tag: 6.7.0.beta1~6736 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f736dd341c71d95b63a308bf59e48395ca81123e;p=vaadin-framework.git Added PERCENTAGE width/height support svn changeset:340/svn branch:toolkit --- diff --git a/src/com/itmill/toolkit/ui/Table.java b/src/com/itmill/toolkit/ui/Table.java index ca423e0076..8b0ea67aa7 100644 --- a/src/com/itmill/toolkit/ui/Table.java +++ b/src/com/itmill/toolkit/ui/Table.java @@ -2148,23 +2148,23 @@ public class Table extends Select implements Action.Container, } /** Set height units. - * Table supports only Sizeable.UNITS_PIXELS and Sizeable.UNITS_ROWS. Setting to any other throws + * Table supports only Sizeable.UNITS_PIXELS, Sizeable.UNITS_PERCENTAGE and Sizeable.UNITS_ROWS. Setting to any other throws * IllegalArgumentException. * @see com.itmill.toolkit.terminal.Sizeable#setHeightUnits(int) */ public void setHeightUnits(int units) { - if (units != Sizeable.UNITS_PIXELS && units != Sizeable.UNITS_ROWS) + if (units != Sizeable.UNITS_PIXELS && units != Sizeable.UNITS_ROWS && units != Sizeable.UNITS_PERCENTAGE) throw new IllegalArgumentException(); this.heightUnit = units; } /** Set width units. - * Tabel supports only Sizeable.UNITS_PIXELS. Setting to any other throws + * Tabel supports only Sizeable.UNITS_PIXELS and Sizeable.UNITS_PERCENTAGE. Setting to any other throws * IllegalArgumentException. * @see com.itmill.toolkit.terminal.Sizeable#setWidthUnits(int) */ public void setWidthUnits(int units) { - if (units != Sizeable.UNITS_PIXELS) + if (units != Sizeable.UNITS_PIXELS && units != Sizeable.UNITS_PERCENTAGE) throw new IllegalArgumentException(); this.heightUnit = units; }