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
|
package com.vaadin.tests.tickets;
import java.util.Random;
import com.vaadin.Application;
import com.vaadin.ui.Button;
import com.vaadin.ui.UI.LegacyWindow;
import com.vaadin.ui.Table;
import com.vaadin.ui.VerticalLayout;
import com.vaadin.ui.themes.BaseTheme;
public class Ticket2344 extends Application.LegacyApplication {
@Override
public void init() {
LegacyWindow main = new LegacyWindow("Quick test");
setMainWindow(main);
// setTheme("quicktest");
VerticalLayout hl = new VerticalLayout();
hl.setWidth("400px");
main.setContent(hl);
Table t = new Table();
t.setWidth("100%");
t.addContainerProperty("Prop 1", VerticalLayout.class, "");
t.addContainerProperty("Prop 2", String.class, "");
t.addContainerProperty("Prop 3", String.class, "");
t.addContainerProperty("Prop 4", String.class, "");
t.addContainerProperty("Prop 5", Button.class, "");
t.setPageLength(3);
for (int i = 0; i < 10; i++) {
VerticalLayout vl = new VerticalLayout();
// vl.setWidth(null);
Button b = new Button("String 1 2 3");
b.setStyleName(BaseTheme.BUTTON_LINK);
vl.addComponent(b);
t.addItem(new Object[] { vl, "String 2", "String 3", "String 4",
new Button("String 5") }, new Integer(new Random().nextInt()));
}
hl.addComponent(t);
}
}
|