From 21aee415db84e4816c1298b50b39fcd55d40df44 Mon Sep 17 00:00:00 2001 From: Matti Tahvonen Date: Mon, 5 Feb 2007 11:52:17 +0000 Subject: [PATCH] fixes #216 : implemented Sizeable interface in JS side, removed unimplemented rows and percentage units from height from Java side svn changeset:458/svn branch:toolkit --- src/com/itmill/toolkit/ui/Table.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/com/itmill/toolkit/ui/Table.java b/src/com/itmill/toolkit/ui/Table.java index 64e5b7d1fa..5e4a3abaac 100644 --- a/src/com/itmill/toolkit/ui/Table.java +++ b/src/com/itmill/toolkit/ui/Table.java @@ -2194,12 +2194,12 @@ public class Table extends Select implements Action.Container, } /** Set height units. - * Table supports only Sizeable.UNITS_PIXELS, Sizeable.UNITS_PERCENTAGE and Sizeable.UNITS_ROWS. Setting to any other throws + * Table supports only Sizeable.UNITS_PIXELS. 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 && units != Sizeable.UNITS_PERCENTAGE) + if (units != Sizeable.UNITS_PIXELS) throw new IllegalArgumentException(); this.heightUnit = units; } @@ -2212,7 +2212,7 @@ public class Table extends Select implements Action.Container, public void setWidthUnits(int units) { if (units != Sizeable.UNITS_PIXELS && units != Sizeable.UNITS_PERCENTAGE) throw new IllegalArgumentException(); - this.heightUnit = units; + this.widthUnit = units; } /** -- 2.39.5