diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2009-04-23 13:24:26 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2009-04-23 13:24:26 +0000 |
commit | bc493e0ae6e67af9b28d5ef459bea8fcae756079 (patch) | |
tree | c98a33fc89bbf2bf14a43a7b1bc0bcdd8a2322af | |
parent | 58e920c686123e0a918d4b383bf894e5e358662d (diff) | |
download | vaadin-framework-bc493e0ae6e67af9b28d5ef459bea8fcae756079.tar.gz vaadin-framework-bc493e0ae6e67af9b28d5ef459bea8fcae756079.zip |
fixed test description and enhanced test
svn changeset:7510/svn branch:6.0
-rw-r--r-- | src/com/itmill/toolkit/tests/components/table/ColumnWidths.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/com/itmill/toolkit/tests/components/table/ColumnWidths.java b/src/com/itmill/toolkit/tests/components/table/ColumnWidths.java index af03414db5..1d7f9cc6fc 100644 --- a/src/com/itmill/toolkit/tests/components/table/ColumnWidths.java +++ b/src/com/itmill/toolkit/tests/components/table/ColumnWidths.java @@ -14,7 +14,8 @@ public class ColumnWidths extends TestBase { + "columns (by server or user (dragged)) columns " + "must consume the excess space. Space is divided " + "by default according to natural widths of columns." - + " Lastname should get 1/3 of excess spsace, the las column 2/3."; + + "In example last column is fixed width. Other columns" + + " should divide excess space relatively to 'natural' width unless user has resized column."; } @@ -58,7 +59,7 @@ public class ColumnWidths extends TestBase { table.setContainerDataSource(idx); table.setColumnHeader("firstname", "FirstName"); - table.setColumnHeader("lastname", "LastName"); + table.setColumnHeader("lastname", "LastName with long header"); table.setColumnWidth("150pxfixedCol", 150); |