blob: f52c1b1ccca3ea3d337ddb7c093538c857d1b445 (
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
|
package com.vaadin.tests.tickets;
import com.vaadin.Application;
import com.vaadin.data.Property;
import com.vaadin.data.Property.ValueChangeEvent;
import com.vaadin.ui.UI.LegacyWindow;
import com.vaadin.ui.TextField;
public class Ticket2415 extends Application.LegacyApplication {
@Override
public void init() {
final LegacyWindow main = new LegacyWindow("");
setMainWindow(main);
final TextField tf = new TextField("Try to change me");
main.addComponent(tf);
tf.setImmediate(true);
tf.addListener(new Property.ValueChangeListener() {
@Override
public void valueChange(ValueChangeEvent event) {
main.showNotification("New value = " + tf);
}
});
final TextField tf2 = new TextField("Try to change me");
main.addComponent(tf2);
tf2.setImmediate(true);
tf2.addListener(new Property.ValueChangeListener() {
@Override
public void valueChange(ValueChangeEvent event) {
main.showNotification("New value = " + tf2);
}
});
}
}
|