diff options
Diffstat (limited to 'src/com/vaadin/tests/components/combobox/ComboBoxNavigation.java')
-rw-r--r-- | src/com/vaadin/tests/components/combobox/ComboBoxNavigation.java | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/src/com/vaadin/tests/components/combobox/ComboBoxNavigation.java b/src/com/vaadin/tests/components/combobox/ComboBoxNavigation.java deleted file mode 100644 index 245fc123df..0000000000 --- a/src/com/vaadin/tests/components/combobox/ComboBoxNavigation.java +++ /dev/null @@ -1,30 +0,0 @@ -package com.vaadin.tests.components.combobox; - -import com.vaadin.tests.components.TestBase; -import com.vaadin.ui.ComboBox; - -public class ComboBoxNavigation extends TestBase { - - @Override - protected String getDescription() { - return "Entering e in the field and scrolling down with the arrow keys should always select the next item, also when the page changes. Scrolling back up should always select the previous item, also when changing pages."; - } - - @Override - protected Integer getTicketNumber() { - return 2214; - } - - @Override - protected void setup() { - ComboBox cb = new ComboBox(); - for (int i = 1; i < 100; i++) { - cb.addItem("Item " + i); - } - - cb.setFilteringMode(ComboBox.FILTERINGMODE_CONTAINS); - addComponent(cb); - - } - -} |