blob: 524799ab3ca46bfece5c3ab007c495a9863a3295 (
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
|
package com.vaadin.tests.layouts;
import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.GridLayout;
import com.vaadin.ui.Label;
import com.vaadin.ui.Panel;
import com.vaadin.ui.VerticalLayout;
public class GridLayoutInsidePanel extends TestBase {
@Override
protected String getDescription() {
return "The first Panel contains a VerticalLayout, which contains a GridLayout, which contains a Label. The second panel directly contains a GridLayout, which contains a Label. Both should be rendered in the same way.";
}
@Override
protected Integer getTicketNumber() {
return 2652;
}
@Override
protected void setup() {
{
GridLayout gl = new GridLayout(1, 1);
gl.setSizeUndefined();
gl.addComponent(new Label(
"A label which defines the size of the GL"));
VerticalLayout pl = new VerticalLayout();
pl.setMargin(true);
pl.setSizeUndefined();
Panel p = new Panel("Panel 1", pl);
pl.setMargin(false);
p.setSizeUndefined();
pl.addComponent(gl);
addComponent(p);
}
{
GridLayout gl = new GridLayout(1, 1);
gl.setSizeUndefined();
gl.addComponent(new Label(
"A label which defines the size of the GL"));
Panel p = new Panel("Panel 2", gl);
gl.setMargin(false);
p.setSizeUndefined();
gl.setSizeUndefined();
addComponent(p);
}
}
}
|