blob: a761db1c63fb262e9bd0fdf378faf3a4507c2d13 (
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
|
package com.vaadin.tests.tickets;
import com.vaadin.Application;
import com.vaadin.ui.GridLayout;
import com.vaadin.ui.Label;
import com.vaadin.ui.TextField;
import com.vaadin.ui.UI.LegacyWindow;
import com.vaadin.ui.VerticalLayout;
public class Ticket2024 extends Application {
@Override
public void init() {
LegacyWindow w = new LegacyWindow(getClass().getSimpleName());
setMainWindow(w);
// setTheme("tests-tickets");
GridLayout layout = new GridLayout(2, 2);
layout.setHeight("100%");
layout.setWidth("700");
w.getContent().setSizeFull();
w.getContent().setHeight("2000");
w.getContent().addComponent(layout);
layout.addComponent(new Label(
"This should NOT get stuck when scrolling down"));
layout.addComponent(new TextField("This should not get stuck either..."));
VerticalLayout ol = new VerticalLayout();
ol.setHeight("1000");
ol.setWidth("200");
w.getContent().addComponent(ol);
ol.addComponent(new Label("Just a label to enable the scrollbar"));
}
}
|