Hi Goran, thanks for this component. I have an issue - when I have 2 components (1 simple ComboBox and 1 MultiSelectComboBox) and I start by having your MultiSelect non-visible (setVisible(false)) - and with addValueChangeListener on the simple ComboBox I set your MultiSelect to setVisible(true), values are not populated in the dropdown. It is as if it’s empty.
One place I got:
yourMultiSelect.setVisible(false);
Another place in simpleComboBox.addValueChangeListener(event → {
yourMultiSelect.setVisible(true);
yourMultiSelect.setItems(someListOfObjects);
It shows the MultiSelect but it’s empty. When I click on it, no dropdown is shown.
Testing this with 2 regular ComboBoxes - it works. ComboBox appears AND it has the needed values.
Request your help/comments on this.
Beforehand thanks a lot!!!
Btw: Java and Vaadin used:
<java.version>17</java.version>
<vaadin.version>22.0.5</vaadin.version>