Scroll « JComboBox « Java Swing Q&A





1. Portable way to have horizontal scroll bar for JComboBox    stackoverflow.com

From Coderanch and Sun Forum, I know the technique to have a horizontal scroll bar for JComboBox. However, their suggested solution are bounded to Look n Feel specific. As ...

2. grab and drag JComboBox scroll    stackoverflow.com

I would like to make JComboBoxes scrollable by dragging their contents. It makes sense for a touch-screen app. I think I could manage to do it if there was a way ...

3. How to make JComboBox selected item not changed when scrolling through its popuplist using keyboard    stackoverflow.com

I have a JComboBox component in the panel and ItemListener attached to it. But it gets fired after every up/down keypress (when scrolling though opened popup list). I want to change ...

4. Scrolling on a JComboBox popup hide it    stackoverflow.com

My client is complaining that JComboBox popups often close when the scroll is being used over a JComboBox popup with no vertical scrollbar. (He seems to accidently use scrolling over it ...

5. Scrolling JComboBox popup to show selected item at top    coderanch.com

Hi, I'm using a JComboBox which contains many items in its model. Im programmatically selecting the selected item using syntax such as..... setSelectedItem(8); When I do this, the combo popup automatically scrolls to show the selected item in the popup view. However, the popup menu only scrolls 'just far enough' to display the item so it is usually displayed at the ...

6. JComboBox with horizontall scroll bar    coderanch.com

8. Scrolling on a JComboBox popup hide it    java-forums.org

Hi ! My client is complaining that JComboBox popups often close when the scroll is being used over a JComboBox popup with no vertical scrollbar. (He seems to accidently use scrolling over it because he is using an Apple Magic Mouse.) Any way to prevent this to happen ? I know it has to do with the ComboBoxUI, but I would ...