Vaadin 8 Combobox howto选择拳头项目
Vaadin 8 Combobox howto selected fist item
我尝试了以下方法:
machineComboBox.setEmptySelectionAllowed(false);
machineComboBox.focus();
this.addComponent(machineComboBox);
我阅读了:
你到底想达到什么目的?如果您只想 select 第一项,那么这应该可行:
machineComboBox.setSelectedItem(yourItems.get(0));
示例取自此处:Selection Components
focus()
没有 select 任何东西,只是聚焦(勾勒)组件。
我尝试了以下方法:
machineComboBox.setEmptySelectionAllowed(false);
machineComboBox.focus();
this.addComponent(machineComboBox);
我阅读了:
你到底想达到什么目的?如果您只想 select 第一项,那么这应该可行:
machineComboBox.setSelectedItem(yourItems.get(0));
示例取自此处:Selection Components
focus()
没有 select 任何东西,只是聚焦(勾勒)组件。