blob: c0985ef688a30d47854e090076b55007c700f1ce (
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
package com.vaadin.tests.components.grid;
import java.util.Arrays;
import java.util.List;
import java.util.stream.IntStream;
import com.vaadin.annotations.Widgetset;
import com.vaadin.server.VaadinRequest;
import com.vaadin.shared.ui.grid.HeightMode;
import com.vaadin.tests.components.AbstractReindeerTestUI;
import com.vaadin.ui.Grid;
import com.vaadin.ui.NativeSelect;
import com.vaadin.ui.TabSheet;
import com.vaadin.ui.VerticalLayout;
@Widgetset("com.vaadin.DefaultWidgetSet")
public class GridRowHeightChange extends AbstractReindeerTestUI {
private final List<String> themes = Arrays.asList("valo", "reindeer",
"runo", "chameleon", "base");
@Override
protected void setup(VaadinRequest request) {
Grid<Integer> grid = new Grid<>();
// create column and fill rows
grid.addColumn(item -> "row_" + item).setCaption("Header");
grid.setItems(IntStream.range(1, 11).boxed());
// set height mode and height
grid.setHeightMode(HeightMode.ROW);
grid.setHeightByRows(10);
// create a tabsheet with one tab and place grid inside
VerticalLayout tab = new VerticalLayout();
tab.setSpacing(false);
tab.setMargin(false);
TabSheet tabSheet = new TabSheet();
tabSheet.setWidthUndefined();
tabSheet.addTab(tab, "Tab");
tab.addComponent(grid);
// Theme selector
NativeSelect<String> themeSelector = new NativeSelect<>(
"Theme selector", themes);
themeSelector.setSelectedItem("reindeer");
themeSelector.setEmptySelectionAllowed(false);
themeSelector
.addValueChangeListener(event -> setTheme(event.getValue()));
VerticalLayout layout = new VerticalLayout();
layout.setSpacing(true);
layout.setSizeUndefined();
layout.addComponent(themeSelector);
layout.addComponent(tabSheet);
addComponent(layout);
}
@Override
protected String getTestDescription() {
return "Test if Grid's height is adjusted when HeightMode.ROW and row height is recalculated.<br>"
+ "When loading is complete, all 10 rows should be visible with all themes.";
}
@Override
protected Integer getTicketNumber() {
return 20104;
}
}
|