JComboBox Background Color

Hi,When I use setBackground(Color.WHITE), the JComboBox button also changes to white. How do I set the JComboBox background to WHITE without affecting the button? Thanks.
[184 byte] By [Amarisa] at [2007-10-2 5:49:13]
# 1
if editablecombo.getEditor().getEditorComponent().setBackground(Color.RED);
Michael_Dunna at 2007-7-16 1:58:42 > top of Java-index,Desktop,Core GUI APIs...
# 2
Thanks Michael. Actually, i did the following instead:setEditable(true); // Turn on the Editor (to get white background)getEditor().getEditorComponent().setFocusable(false); // But denied focus (thus, user can only select from dropdown)
Amarisa at 2007-7-16 1:58:42 > top of Java-index,Desktop,Core GUI APIs...