blob: 7d24e0de318b1c202c00f3839956ba0790b2fbdc (
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
|
package com.vaadin.tests.components.popupview;
import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractReindeerTestUI;
import com.vaadin.ui.Button;
import com.vaadin.ui.Label;
import com.vaadin.ui.PopupView;
public class PopupViewAndFragment extends AbstractReindeerTestUI {
@Override
protected void setup(VaadinRequest request) {
final PopupView pw = new PopupView("Open", new Label("Oh, hi"));
addComponent(pw);
final Button button = new Button("Open and change fragment", event -> {
pw.setPopupVisible(true);
getPage()
.setUriFragment(String.valueOf(System.currentTimeMillis()));
});
addComponent(button);
}
@Override
protected String getTestDescription() {
return "Changing frament should not automatically close PopupView";
}
@Override
protected Integer getTicketNumber() {
return 10530;
}
}
|