Browse Source

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
tags/6.7.0.beta1
Matti Tahvonen 17 years ago
parent
commit
21aee415db
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      src/com/itmill/toolkit/ui/Table.java

+ 3
- 3
src/com/itmill/toolkit/ui/Table.java View File

@@ -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;
}
/**

Loading…
Cancel
Save