blob: b9784d6941987e1d1b1c1920500d89acfa001227 (
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
|
package com.vaadin.tests.tickets;
import com.vaadin.LegacyApplication;
import com.vaadin.ui.Button;
import com.vaadin.ui.GridLayout;
import com.vaadin.ui.UI.LegacyWindow;
public class Ticket2411 extends LegacyApplication {
@Override
public void init() {
LegacyWindow w = new LegacyWindow(getClass().getSimpleName());
setMainWindow(w);
// VerticalLayout l = new VerticalLayout();
GridLayout l = new GridLayout();
w.setContent(l);
l.setHeight("504px");
for (int i = 1; i <= 5; i++) {
Button b = new Button("Button " + i
+ " should be 100px or 101px high");
b.setHeight("100%");
l.addComponent(b);
}
}
}
|