Is there some shortcut to reset JComboBox for index -1?
Hi,I tried to use DEL key to clear JComboBox selected item, but it didn't work. Is there some key for this or I need to create a JComboBox child to handle this problem?
Don't know what you mean by "combo box child", but yes you need to write your own code. Either create a "Clear Selection" button or use a Key Binding to assing some KeyStroke to invoke an Action to clear the selection.