Vaadin 8 ComboBox removeAllItems 的替代方案是什么?
What is the alternative for Vaadin 8 ComboBox removeAllItems?
我想从 vaadin 8 中的组合框中删除所有值,但 vaadin 8 中不存在 removeAllItems api。
它的替代品是什么?
如果没有别的办法,你总是可以 "populate" 带有空列表的组合框。
comboBox.setItems(new ArrayList<YourBean>());
我想从 vaadin 8 中的组合框中删除所有值,但 vaadin 8 中不存在 removeAllItems api。
它的替代品是什么?
如果没有别的办法,你总是可以 "populate" 带有空列表的组合框。
comboBox.setItems(new ArrayList<YourBean>());