blob: 38cc567295cd50fe9e1d2217e8802d26883f78ad (
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
|
package com.vaadin.tests.tickets;
import com.vaadin.Application;
import com.vaadin.data.Property;
import com.vaadin.data.util.ObjectProperty;
import com.vaadin.server.ExternalResource;
import com.vaadin.shared.ui.label.ContentMode;
import com.vaadin.ui.Button;
import com.vaadin.ui.Label;
import com.vaadin.ui.Layout;
import com.vaadin.ui.UI.LegacyWindow;
import com.vaadin.ui.Select;
import com.vaadin.ui.VerticalLayout;
/**
* Test case for Ticket 2119.
*/
public class Ticket2119 extends Application.LegacyApplication {
private ObjectProperty<String> globalValue;
@Override
public void init() {
globalValue = new ObjectProperty<String>(null, String.class);
LegacyWindow main = createWindow();
setMainWindow(main);
}
@Override
public LegacyWindow getWindow(String name) {
if (!isRunning()) {
return null;
}
// If we already have the requested window, use it
LegacyWindow w = super.getWindow(name);
if (w == null) {
// If no window found, create it
w = createWindow();
addWindow(w);
w.open(new ExternalResource(w.getURL()));
}
return w;
}
private LegacyWindow createWindow() {
LegacyWindow main = new LegacyWindow("Test for ticket XXX");
main.setContent(testLayout());
return main;
}
private Layout testLayout() {
final Layout layout = new VerticalLayout();
final Label label = new Label(
"Instructions to reproduce:\n"
+ " - Open this application in two browser windows\n"
+ " - Click the Button in first Window\n"
+ " - Go to the second Window\n"
+ " - Click the arrow in the Select\n"
+ " --> The opened list correctly shows the new value but the old one is shown in the \"input\" part");
label.setContentMode(ContentMode.PREFORMATTED);
layout.addComponent(label);
final Select select = new Select("Test Select");
select.setWidth("100px");
select.setImmediate(true);
select.setNullSelectionAllowed(false);
select.addItem("1");
select.addItem("2");
select.addItem("3");
final ObjectProperty<String> valueProperty = new ObjectProperty<String>(
"1", String.class);
select.setPropertyDataSource(valueProperty);
layout.addComponent(select);
globalValue.addListener(new Property.ValueChangeListener() {
@Override
public void valueChange(Property.ValueChangeEvent event) {
Object value = event.getProperty().getValue();
valueProperty.setValue((null != value) ? value.toString()
: null);
}
});
final Button changeValueButton = new Button("Change Value to 2");
changeValueButton.addListener(new Button.ClickListener() {
@Override
public void buttonClick(Button.ClickEvent event) {
globalValue.setValue("2");
}
});
layout.addComponent(changeValueButton);
return layout;
}
}
|