blob: b352170846777e115d6b78403cb5d7119ccc4cda (
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
|
package com.vaadin.tests.components.combobox;
import com.vaadin.tests.components.AbstractTestCase;
import com.vaadin.ui.ComboBox;
import com.vaadin.ui.GridLayout;
import com.vaadin.ui.Label;
import com.vaadin.ui.Layout;
import com.vaadin.ui.LegacyWindow;
@SuppressWarnings("serial")
public class GridLayoutComboBoxZoomOut extends AbstractTestCase {
@Override
public void init() {
LegacyWindow mainWindow = new LegacyWindow("Gridlayoutbug Application");
setMainWindow(mainWindow);
Label description = new Label(
"Open this application in Chrome, zoom out (cmd + \"-\") and "
+ "open the ComboBox for weird behavior.");
mainWindow.addComponent(description);
Layout formLayout = new GridLayout(2, 1);
// formLayout.setWidth("100%");
formLayout.setWidth("1000px");
ComboBox<String> countryField = new ComboBox<>();
countryField.setItems("Finland", "Sweden", "Canada", "USA");
countryField.setCaption("Country");
countryField.setWidth("100%");
formLayout.addComponent(countryField);
ComboBox<String> statusField = new ComboBox<>();
statusField.setItems("Available", "On vacation", "Busy",
"Left the building");
statusField.setCaption("Status");
statusField.setWidth("100%");
formLayout.addComponent(statusField);
mainWindow.addComponent(formLayout);
}
@Override
protected String getDescription() {
// TODO Auto-generated method stub
return null;
}
@Override
protected Integer getTicketNumber() {
// TODO Auto-generated method stub
return null;
}
}
|