package com.vaadin.tests.components.ui;
import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractTestUIWithLog;
import com.vaadin.ui.ComboBox;
import com.vaadin.ui.Label;
public class ComboboxSelectedItemText extends AbstractTestUIWithLog {
@Override
protected void setup(VaadinRequest request) {
getLayout()
.addComponent(
new Label(
"Select first ANTIGUA AND BARBUDA from the first combobox. Then select ANTIGUA AND BARBUDA from the second combobox. Finally, click the popup button on the first combobox. Before fix you would see UA AND BAR in the field."));
ComboBox combobox = new ComboBox("Text input enabled:");
combobox.setWidth("100px");
combobox.addItem("AMERICAN SAMOA");
combobox.addItem("ANTIGUA AND BARBUDA");
ComboBox combobox2 = new ComboBox("Text input disabled:");
combobox2.setWidth("100px");
combobox2.setTextInputAllowed(false);
combobox2.addItem("AMERICAN SAMOA");
combobox2.addItem("ANTIGUA AND BARBUDA");
getLayout().addComponent(combobox);
getLayout().addComponent(combobox2);
}
@Override
protected String getTestDescription() {
return "Tests selected item is displayed from the beginning";
}
@Override
protected Integer getTicketNumber() {
return 13477;
}
}