diff options
Diffstat (limited to 'src/com/vaadin/tests/components/table/ColumnWidths.java')
-rw-r--r-- | src/com/vaadin/tests/components/table/ColumnWidths.java | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/src/com/vaadin/tests/components/table/ColumnWidths.java b/src/com/vaadin/tests/components/table/ColumnWidths.java new file mode 100644 index 0000000000..9fe7a98179 --- /dev/null +++ b/src/com/vaadin/tests/components/table/ColumnWidths.java @@ -0,0 +1,69 @@ +package com.vaadin.tests.components.table; + +import com.vaadin.data.Item; +import com.vaadin.data.util.IndexedContainer; +import com.vaadin.tests.components.TestBase; +import com.vaadin.ui.Label; +import com.vaadin.ui.Table; + +public class ColumnWidths extends TestBase { + + @Override + protected String getDescription() { + return "On window resize undefined " + + "columns (by server or user (dragged)) columns " + + "must consume the excess space. Space is divided " + + "by default according to natural widths of columns." + + "In example last column is fixed width. Other columns" + + " should divide excess space relatively to 'natural' width unless user has resized column."; + + } + + @Override + protected Integer getTicketNumber() { + return 2804; + } + + private static final int ROWS = 100; + + @Override + public void setup() { + Table table1 = initTable(); + addComponent(new Label("Plain table")); + addComponent(table1); + + } + + private Table initTable() { + Table table = new Table(); + table.setWidth("100%"); + + IndexedContainer idx = new IndexedContainer(); + idx.addContainerProperty("firstname", String.class, null); + idx.addContainerProperty("lastname", String.class, null); + Item i = idx.addItem(1); + i.getItemProperty("firstname").setValue("John"); + i.getItemProperty("lastname").setValue("Johnson"); + i = idx.addItem(2); + i.getItemProperty("firstname").setValue("Jane"); + i.getItemProperty("lastname").setValue("Janeine"); + + for (int index = 3; index < ROWS; index++) { + i = idx.addItem(index); + i.getItemProperty("firstname").setValue("Jane"); + i.getItemProperty("lastname").setValue("Janeine"); + } + + idx.addContainerProperty("150pxfixedCol", String.class, "foobar"); + + table.setContainerDataSource(idx); + + table.setColumnHeader("firstname", "FirstName"); + table.setColumnHeader("lastname", "LastName with long header"); + + table.setColumnWidth("150pxfixedCol", 150); + + return table; + } + +} |