blob: e43f15121a6fd33f43f5b7e6010e86b62dcc3390 (
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
|
package com.vaadin.tests.tickets;
import com.vaadin.LegacyApplication;
import com.vaadin.ui.Button;
import com.vaadin.ui.Button.ClickEvent;
import com.vaadin.ui.LegacyWindow;
import com.vaadin.ui.TextField;
import com.vaadin.ui.VerticalLayout;
public class Ticket1939 extends LegacyApplication {
@Override
public void init() {
LegacyWindow w = new LegacyWindow(getClass().getName());
setMainWindow(w);
final VerticalLayout l = new VerticalLayout();
l.setWidth("400px");
l.setHeight("100px");
l.addComponent(new TextField("This one works fine"));
TextField t = new TextField();
t.setRequired(true);
t.setValue("This one bugs");
l.addComponent(t);
w.addComponent(l);
w.addComponent(new Button("show me the bug",
new Button.ClickListener() {
@Override
public void buttonClick(ClickEvent event) {
l.setWidth(null);
}
}));
}
}
|