Explorar el Código

Added PERCENTAGE width/height support

svn changeset:340/svn branch:toolkit
tags/6.7.0.beta1
Joonas Lehtinen hace 17 años
padre
commit
f736dd341c
Se han modificado 1 ficheros con 4 adiciones y 4 borrados
  1. 4
    4
      src/com/itmill/toolkit/ui/Table.java

+ 4
- 4
src/com/itmill/toolkit/ui/Table.java Ver fichero

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

Cargando…
Cancelar
Guardar