blob: 24fbd7a9684b4d7c82e2f3fcb68a04b3d59f3f6f (
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.tickets;
import com.vaadin.Application;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.Label;
import com.vaadin.ui.Panel;
import com.vaadin.ui.UI.LegacyWindow;
import com.vaadin.ui.themes.Reindeer;
public class Ticket2310 extends Application.LegacyApplication {
@Override
public void init() {
final LegacyWindow main = new LegacyWindow(getClass().getName()
.substring(getClass().getName().lastIndexOf(".") + 1));
setMainWindow(main);
main.addComponent(new Label("Instructions: change label when panel is "
+ "invisible -> invalid change (with disabled "
+ "flag) is sent to client. Label is grey when panel is shown."));
final Panel p = new Panel();
p.setStyleName(Reindeer.PANEL_LIGHT);
main.addComponent(p);
p.setHeight("100px");
final Label l = new Label("foobar");
p.addComponent(l);
Button b = new Button("change label");
b.addListener(new Button.ClickListener() {
int i = 0;
@Override
public void buttonClick(ClickEvent event) {
l.setValue("foobar " + i++);
}
});
Button b2 = new Button("toggle panel visibility");
b2.addListener(new Button.ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
p.setVisible(!p.isVisible());
}
});
main.addComponent(b);
main.addComponent(b2);
}
}
|