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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
package com.vaadin.tests.components.table;
import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.Button.ClickListener;
import com.vaadin.ui.Table;
public class TableVisibleColumnsUpdate extends TestBase {
private String[] cols1 = new String[] { "p1", "p2", "p3" };
private String[] cols2 = new String[] { "p1", "p4", "p3" };
private Table table;
@Override
protected String getDescription() {
return "Columns should change between p1,p2,p3 and p1,p4,p3";
}
@Override
protected Integer getTicketNumber() {
return 3139;
}
@Override
protected void setup() {
table = new Table();
table.setWidth("400px");
table.setHeight("100px");
table.setPageLength(100);
table.addContainerProperty("p1", String.class, null);
table.addContainerProperty("p2", String.class, null);
table.addContainerProperty("p3", String.class, null);
table.addContainerProperty("p4", String.class, null);
for (int i = 0; i < 10; i++) {
table.addItem(new Object[] { "a" + i, "b" + i, "c" + i, "X" + i },
"" + i);
}
addComponent(table);
table.setVisibleColumns(cols1);
// table.setColumnHeaders(headers1);
Button updateButton = new Button("Change columns", new ClickListener() {
private boolean one = true;
@Override
public void buttonClick(ClickEvent event) {
table.setVisibleColumns((one ? cols2 : cols1));
one = !one;
}
});
addComponent(updateButton);
}
}
|