blob: 547619bc280e6a1b7d94002a03d0bcc645f33b3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
package com.vaadin.tests.components.table;
import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.Button;
import com.vaadin.v7.ui.Table;
public class UncollapsedCollumnWidth extends TestBase {
@Override
protected void setup() {
final Table table = new Table();
table.addContainerProperty("Col1", String.class, "");
table.addContainerProperty("Col2", String.class, "");
table.setColumnCollapsingAllowed(true);
table.setColumnCollapsed("Col2", true);
table.setColumnWidth("Col1", 150);
table.setWidth("400px");
table.addItem(new Object[] { "Cell 1", "Cell 2" }, new Object());
addComponent(table);
addComponent(new Button("Uncollapse col2",
event -> table.setColumnCollapsed("Col2", false)));
}
@Override
protected String getDescription() {
return "Uncollapsing col2 after resizing col1 should set a reasonable width for col2. Additionally, the width of the header and the cell content should be the same.";
}
@Override
protected Integer getTicketNumber() {
return Integer.valueOf(7012);
}
}
|