blob: 495e3de26a08a77e12e0a68b4f3b78026b357025 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
package com.vaadin.tests.tickets;
import com.vaadin.Application;
import com.vaadin.data.util.BeanItem;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.Form;
import com.vaadin.ui.FormLayout;
import com.vaadin.ui.GridLayout;
import com.vaadin.ui.Label;
import com.vaadin.ui.UI.LegacyWindow;
public class Ticket2244 extends Application.LegacyApplication {
Form form;
@Override
public void init() {
LegacyWindow w = new LegacyWindow(getClass().getSimpleName());
setMainWindow(w);
GridLayout gl = new GridLayout(3, 3);
gl.setSpacing(true);
gl.addComponent(new Label("Before form"));
gl.newLine();
form = new Form(gl);
form.setItemDataSource(new BeanItem<MyBean>(new MyBean()));
gl.addComponent(new Label("After form"));
w.addComponent(form);
w.addComponent(new Button("new item", new Button.ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
form.setItemDataSource(new BeanItem<MyBean>(new MyBean()));
}
}));
w.addComponent(new Button("new bigger item",
new Button.ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
form.setItemDataSource(new BeanItem<MyBean>(
new MyBiggerBean()));
}
}));
w.addComponent(new Button("new grid layout",
new Button.ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
form.setLayout(new GridLayout());
}
}));
w.addComponent(new Button("new form layout",
new Button.ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
form.setLayout(new FormLayout());
}
}));
}
public class MyBean {
String firstname;
String lastname;
String password;
public String getFirstname() {
return firstname;
}
public void setFirstname(String firstname) {
this.firstname = firstname;
}
public String getLastname() {
return lastname;
}
public void setLastname(String lastname) {
this.lastname = lastname;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}
public class MyBiggerBean extends MyBean {
String address;
String phone;
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
}
}
|