java Programming Glossary: suggestioncombobox
How to configure JComboBox not to select FIRST element when created? http://stackoverflow.com/questions/2762818/how-to-configure-jcombobox-not-to-select-first-element-when-created model new DefaultComboBoxModel model.setSelectedItem null suggestionComboBox new JComboBox model suggestionComboBox.setModel model But could.. null suggestionComboBox new JComboBox model suggestionComboBox.setModel model But could not get it to work the first item is.. 1 in my code this code is placed in caretInvoke suggestionComboBox.removeAllItems for int i 0 i suggestions.length i suggestionComboBox.addItem..
|