aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/main/java/com/vaadin/tests/components/combobox/ComboBoxSuggestionPopupWidthLegacy.java
blob: 1a29258e3b107d461c4824726e9135aa9ee003e7 (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
package com.vaadin.tests.components.combobox;

import java.util.Arrays;
import java.util.List;

import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractReindeerTestUI;
import com.vaadin.ui.ComboBox;

public class ComboBoxSuggestionPopupWidthLegacy extends AbstractReindeerTestUI {

    private static List<String> items = Arrays.asList("abc", "cde", "efg",
            "ghi", "ijk", "more items 1", "more items 2", "more items 3",
            "Ridicilously long item caption so we can see how the ComboBox displays ridicilously long captions in the suggestion pop-up",
            "more items 4", "more items 5", "more items 6", "more items 7");

    @Override
    protected void setup(VaadinRequest request) {
        ComboBox<String> legacy = new ComboBox<>(
                "200px wide ComboBox with legacy mode suggestion popup setPopupWidth(null)",
                items);
        legacy.addStyleName("legacy");
        legacy.setWidth("200px");
        legacy.setPopupWidth(null);
        addComponent(legacy);

    }

    @Override
    protected String getTestDescription() {
        return "Suggestion pop-up's width should respect the item captions width";
    }

    @Override
    protected Integer getTicketNumber() {
        return 19685;
    }

}