如何在 gwt 组合框上允许多个 select

how to allow multi select on gwt combobox

我有组合框,我想允许对其进行多项选择 怎么做??

newEmployee = new ComboBox<NctrUserDTO>();
           newEmployee.setFieldLabel("Employee");  
           newEmployee.setDisplayField(NctrUserDTO.NAME);  
           newEmployee.setTriggerAction(TriggerAction.ALL);
           newEmployee.setEditable(true);
           newEmployee.setStore(employeeList);  
           newEmployee.setMaxHeight(200);

我不知道你使用的是哪个 API 的 ComboBox,因为 vanilla GWT 没有 ComboBox,但我想除非你更改 ComboBox class itself/write 一个实际的 MultiSelectComboBox class。除非你的版本恰好已经内置了一个 "enableMultiSelect" 方法,否则你可能不会在这里问。

如果有帮助,I found this thread which seems similar您所描述的内容。