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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
|
package com.vaadin.tests.layouts;
import com.vaadin.data.Item;
import com.vaadin.data.Validator;
import com.vaadin.data.util.BeanItem;
import com.vaadin.legacy.ui.LegacyField;
import com.vaadin.server.AbstractErrorMessage;
import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.Component;
import com.vaadin.ui.CssLayout;
import com.vaadin.ui.DefaultFieldFactory;
import com.vaadin.ui.Form;
import com.vaadin.ui.FormFieldFactory;
import com.vaadin.ui.GridLayout;
import com.vaadin.ui.Label;
import com.vaadin.ui.LegacyWindow;
import com.vaadin.ui.TextField;
import com.vaadin.ui.VerticalLayout;
public class GridLayoutCaptions extends TestBase {
class CustomForm extends Form {
private com.vaadin.ui.GridLayout layout;
private VerticalLayout wrapper = new VerticalLayout();
private CssLayout wrapper2 = new CssLayout();
private FormFieldFactory fff = new FormFieldFactory() {
@Override
public LegacyField<?> createField(Item item, Object propertyId,
Component uiContext) {
if (propertyId.equals(DataPOJO.Fields.name.name())) {
LegacyField<?> f = DefaultFieldFactory.get().createField(item,
propertyId, uiContext);
f.setCaption("This is a long caption for the name field");
return f;
} else if (propertyId.equals(DataPOJO.Fields.hp.name())) {
LegacyField<?> f = DefaultFieldFactory.get().createField(item,
propertyId, uiContext);
f.setCaption("This is a long caption for the HP field, but it has a VL as a wrapper");
return f;
} else if (propertyId.equals(DataPOJO.Fields.place.name())) {
LegacyField<?> f = DefaultFieldFactory.get().createField(item,
propertyId, uiContext);
f.setCaption("This is a long caption for the Place field, but it has a CSSLo as a wrapper");
return f;
} else if (propertyId.equals(DataPOJO.Fields.price.name())) {
LegacyField<?> f = DefaultFieldFactory.get().createField(item,
propertyId, uiContext);
f.setCaption("With size undefined the caption behaves like this...");
f.setSizeFull();
return f;
} else {
return DefaultFieldFactory.get().createField(item,
propertyId, uiContext);
}
}
};
public CustomForm() {
super();
layout = new GridLayout(3, 3);
layout.addComponent(wrapper, 1, 0);
layout.addComponent(wrapper2, 2, 0);
layout.setSpacing(true);
setLayout(layout);
setFormFieldFactory(fff);
Label l = new Label("A label with caption");
l.setCaption("A really long caption that is clipped");
layout.addComponent(l, 0, 2);
Label l2 = new Label("A wrapped label with caption");
l2.setCaption("A really long caption that is not clipped");
VerticalLayout vl = new VerticalLayout();
vl.addComponent(l2);
layout.addComponent(vl, 1, 2);
}
public void createErrors() {
Validator.InvalidValueException ive = new Validator.InvalidValueException(
"Ipsum lipsum laarum lop... ");
for (Object propIDs : getItemDataSource().getItemPropertyIds()) {
((TextField) getField(propIDs))
.setComponentError(AbstractErrorMessage
.getErrorMessageForException(ive));
}
}
public void clearErrors() {
for (Object propIDs : getItemDataSource().getItemPropertyIds()) {
((TextField) getField(propIDs)).setComponentError(null);
}
}
@Override
protected void attachField(Object propertyId, LegacyField field) {
if (propertyId.equals(DataPOJO.Fields.name.name())) {
layout.addComponent(field, 0, 0);
} else if (propertyId.equals(DataPOJO.Fields.hp.name())) {
wrapper.removeAllComponents();
wrapper.addComponent(field);
} else if (propertyId.equals(DataPOJO.Fields.place.name())) {
wrapper2.removeAllComponents();
wrapper2.addComponent(field);
} else if (propertyId.equals(DataPOJO.Fields.price.name())) {
layout.addComponent(field, 0, 1);
}
}
}
public static class DataPOJO {
public enum Fields {
name, price, hp, place;
}
private String name;
private int price;
private String hp;
private String place;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getPrice() {
return price;
}
public void setPrice(int price) {
this.price = price;
}
public String getHp() {
return hp;
}
public void setHp(String hp) {
this.hp = hp;
}
public String getPlace() {
return place;
}
public void setPlace(String place) {
this.place = place;
}
}
@Override
protected void setup() {
LegacyWindow mainWindow = getMainWindow();
Label label = new Label("Hello Vaadin user");
mainWindow.addComponent(label);
DataPOJO forDemo = new DataPOJO();
BeanItem<DataPOJO> bi = new BeanItem<DataPOJO>(forDemo);
final CustomForm aFormWithGl = new CustomForm();
aFormWithGl.setItemDataSource(bi);
mainWindow.addComponent(aFormWithGl);
Button b = new Button("Give me an error!", new Button.ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
aFormWithGl.createErrors();
}
});
mainWindow.addComponent(b);
Button b2 = new Button("Get rid of an error!",
new Button.ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
aFormWithGl.clearErrors();
}
});
mainWindow.addComponent(b2);
}
@Override
protected String getDescription() {
return "Captions in Gridlayout behaves differently than in other layouts";
}
@Override
protected Integer getTicketNumber() {
return 5424;
}
}
|