blob: 41496754bf4b060096eaa491bb8f30c0846f91a3 (
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
|
package com.vaadin.tests.tickets;
import com.vaadin.LegacyApplication;
import com.vaadin.data.Property;
import com.vaadin.data.Property.ValueChangeEvent;
import com.vaadin.ui.CheckBox;
import com.vaadin.ui.Label;
import com.vaadin.ui.UI.LegacyWindow;
import com.vaadin.ui.VerticalLayout;
public class Ticket2001 extends LegacyApplication {
@Override
public void init() {
final LegacyWindow w = new LegacyWindow(getClass().getName());
setMainWindow(w);
final VerticalLayout l = new VerticalLayout();
l.addComponent(new Label("row 1"));
l.addComponent(new Label("row 2"));
w.addComponent(l);
final CheckBox b = new CheckBox("fixed width: 30px", false);
b.addListener(new Property.ValueChangeListener() {
@Override
public void valueChange(ValueChangeEvent event) {
if (b.getValue()) {
l.setWidth("30px");
} else {
l.setWidth(null);
}
}
});
b.setImmediate(true);
w.addComponent(b);
}
}
|