Using the following code:
works faulty. The selected value is written in the textfield when selecting an item from the dropbox, but the dropbox pops up immediately again and never closes when selecting an item from it. It is only closed when the item loses focus.
Without
everything work as it should work.
BR
Code:
ComboBoxItem cbi = new ComboBoxItem("asdf"); cbi.setValueMap("222222", "45547756756756"); cbi.setAddUnknownValues(false); DynamicForm df = new DynamicForm(); df.setItems(cbi);
Without
Code:
cbi.setAddUnknownValues(false);
BR