I have a custom ComboBox where, when a user enters values, it loads from a web service. If no values ββare found, I want the reset combo box to be empty. However, this does not work if the comboBox is initialized with some preselected value. If I call comboBox.select ("") or even comboBox.setValue (null), the previous preselected value is displayed, although I call removeAllItems. This sounds like a comboBox error to me, but maybe someone knows a workaround.
source share