blob: 415bfe8a04cf952978a7c1ce17ebf16d86b18263 (
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
|
package com.vaadin.tests.components.combobox;
import com.vaadin.tests.components.TestBase;
import com.vaadin.tests.util.ItemDataProvider;
import com.vaadin.ui.ComboBox;
import com.vaadin.ui.TextField;
import com.vaadin.v7.data.util.ObjectProperty;
import com.vaadin.v7.shared.ui.label.ContentMode;
import com.vaadin.v7.ui.Label;
public class ComboFocusBlurEvents extends TestBase {
private int counter = 0;
@Override
protected void setup() {
ComboBox<String> cb = new ComboBox<>("Combobox");
cb.setDataProvider(new ItemDataProvider(100));
cb.setPlaceholder("Enter text");
cb.setDescription("Some Combobox");
addComponent(cb);
final ObjectProperty<String> log = new ObjectProperty<>("");
cb.addFocusListener(event -> {
log.setValue(log.getValue() + "<br>" + counter + ": Focus event!");
counter++;
});
cb.addBlurListener(event -> {
log.setValue(log.getValue() + "<br>" + counter + ": Blur event!");
counter++;
});
TextField field = new TextField("Some textfield");
addComponent(field);
Label output = new Label(log);
output.setCaption("Events:");
output.setContentMode(ContentMode.HTML);
addComponent(output);
}
@Override
protected String getDescription() {
// TODO Auto-generated method stub
return null;
}
@Override
protected Integer getTicketNumber() {
return 6536;
}
}
|