Package com.vaadin.tests.components.combobox

Source Code of com.vaadin.tests.components.combobox.ComboBoxTextFieldEventOrder

package com.vaadin.tests.components.combobox;

import java.util.Arrays;

import com.vaadin.data.Property.ValueChangeEvent;
import com.vaadin.data.Property.ValueChangeListener;
import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.Select;
import com.vaadin.ui.TextField;

public class ComboBoxTextFieldEventOrder extends TestBase {

    @Override
    protected void setup() {
        TextField textField = new TextField("text field");
        textField.setImmediate(true);
        final Select select = new Select("select", Arrays.asList("1", "2", "3",
                "4"));
        textField.addListener(new ValueChangeListener() {
            @Override
            public void valueChange(ValueChangeEvent event) {
                select.addItem(Long.valueOf(select.size() + 1).toString()); // or
                                                                            // just
                                                                            // select.requestRepaint();
            }
        });
        addComponent(textField);
        addComponent(select);
    }

    @Override
    protected String getDescription() {
        return "Entering a text in a TextField and then clicking on the button in a ComboBox should cause the TextField value change to be sent first and the ComboBox filtering afterwards. Failure to do so will cause errors if the value change listener modifies the ComboBox";
    }

    @Override
    protected Integer getTicketNumber() {
        return 7481;
    }
}
TOP

Related Classes of com.vaadin.tests.components.combobox.ComboBoxTextFieldEventOrder

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.