blob: 76ee83384e1b2e66391289c25a60b5dc2e2b6339 (
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
|
package com.vaadin.tests.components.combobox;
import com.vaadin.data.Property.ValueChangeEvent;
import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.ComboBox;
import com.vaadin.ui.Label;
public class ComboBoxValueUpdate extends TestBase {
@Override
protected Integer getTicketNumber() {
return 2451;
}
@Override
protected String getDescription() {
return "Testcase for ComboBox. Test especially edge values(of page changes) when selecting items with keyboard only.";
}
@Override
protected void setup() {
ComboBox select = new ComboBox("");
select.setImmediate(true);
for (int i = 0; i < 100; i++) {
select.addItem("item " + i);
}
final Label value = new Label();
select.addListener(new ComboBox.ValueChangeListener() {
@Override
public void valueChange(ValueChangeEvent event) {
System.err
.println("Selected " + event.getProperty().getValue());
value.setValue("Selected " + event.getProperty().getValue());
}
});
getLayout().addComponent(select);
getLayout().addComponent(value);
}
}
|