aboutsummaryrefslogtreecommitdiffstats
path: root/uitest/src/main/java/com/vaadin/tests/components/combobox/ComboBoxSuggestionPopupWidth.java
blob: 587cd69d2d67a6ab54b5ecc43a0504ac757218f8 (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
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 ComboBoxSuggestionPopupWidth 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> cb = new ComboBox<>(
                "200px wide ComboBox with 100% wide suggestion popup", items);
        cb.setPopupWidth("100%");
        cb.setWidth("200px");
        cb.addStyleName("width-as-percentage");
        addComponent(cb);

    }

    @Override
    protected String getTestDescription() {
        return "Suggestion pop-up's width should be the same width as the ComboBox itself";
    }

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

}