Hi David,
ComboBox or ComboBoxEx?
For ComboBox I think you just have to manipulate combo.getChildren()
For ComboBoxEx:
1. combo.setSelection([])
2. combo.setSelectedIndex(combo.getSelectedIndex()+1)
3. var data = combo.getSelection();
for (var i = 0; i < data.length; i++)
I'm trying to figure out the best way to perform the following
operations on a combo box:
1. Clearing the list
2. Programmatically moving forward and backward in the list
3. Looping through the list.
If anyone has any examples, that's be great.
Thanks.
David
--