blob: 29aeef21b1d7249e95ab3babdffd77f0ff68a003 (
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
39
40
41
42
43
44
|
package com.vaadin.tests.tickets;
import com.vaadin.Application;
import com.vaadin.data.Item;
import com.vaadin.ui.Button;
import com.vaadin.ui.Component;
import com.vaadin.ui.DateField;
import com.vaadin.ui.GridLayout;
import com.vaadin.ui.Label;
import com.vaadin.ui.Table;
import com.vaadin.ui.TextField;
import com.vaadin.ui.Window;
public class Ticket2051 extends Application {
private static final Object P1 = new Object();
private static final Object P2 = new Object();
@Override
public void init() {
Window w = new Window(getClass().getSimpleName());
setMainWindow(w);
// setTheme("tests-tickets");
GridLayout layout = new GridLayout(10, 10);
w.setContent(layout);
createUI(layout);
}
private void createUI(GridLayout layout) {
Table t = new Table("This is a table");
t.addContainerProperty(P1, Component.class, null);
t.addContainerProperty(P2, Component.class, null);
t.setColumnHeaders(new String[] { "Col1", "Col2" });
Item i = t.addItem("1");
i.getItemProperty(P1).setValue(new TextField("abc"));
i.getItemProperty(P2).setValue(new Label("label"));
Item i2 = t.addItem("2");
i2.getItemProperty(P1).setValue(new Button("def"));
i2.getItemProperty(P2).setValue(new DateField());
layout.addComponent(t);
}
}
|