You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ComboBoxEmptyItemsKeyboardNavigation.java 435B

123456789101112131415
  1. package com.vaadin.tests.components.combobox;
  2. import com.vaadin.server.VaadinRequest;
  3. import com.vaadin.tests.components.AbstractTestUI;
  4. import com.vaadin.ui.ComboBox;
  5. public class ComboBoxEmptyItemsKeyboardNavigation extends AbstractTestUI {
  6. @Override
  7. protected void setup(VaadinRequest request) {
  8. ComboBox comboBox = new ComboBox();
  9. comboBox.addItems("foo", "bar");
  10. addComponent(comboBox);
  11. }
  12. }