Hi,
In my form I've a combobox binding as follows:
So my combo-box is shown with following options when it's opened.Code:Binding binding = bf.createBoundComboBox("option", createInitialValueModel()); formBuilder.add(binding); ... ... private Object createInitialValueModel() { return new ValueHolder(new String[] { "OptionA", "OptionB", "OptionC"}); }
OptionA
OptionB
OptionC
How Can I change the values in this combobox to the following at runtime?
OptionX
OptionY
OptionZ


Reply With Quote