JComboBox options obscured by other controls

Hello all,

I'm developing a simple swing app. Using some nested gridlayouts, I have a JComboBox right above two JScrollPane()s which contain List()s. Whenever I click the JComboBox, the options that appear show up underneath the JScrollPanes, making it impossible to choose options. Is there some kind of "always on top" option?

I'm fairly new to Swing development, so I'm probably missing something obvious. Also, I'm not doing anything funky with painting, etc.

I'm running Sun's JDK 1.6 on Linux.

Thanks

[543 byte] By [aurisora] at [2007-11-26 15:39:30]
# 1
Can you generate an SSCCE?Alternately, do you really mean java.awt.List? Don't mix swing andawt components...
es5f2000a at 2007-7-8 21:57:53 > top of Java-index,Desktop,Core GUI APIs...
# 2
That's a good point about the List...yes, I'm using the awt.list, and I bet that's causing the problem. If that doesn't resolve the problem, I'll post an example.Thanks!
aurisora at 2007-7-8 21:57:53 > top of Java-index,Desktop,Core GUI APIs...
# 3
Yep, you were right...that was the problem. Thanks again!
aurisora at 2007-7-8 21:57:53 > top of Java-index,Desktop,Core GUI APIs...