View Single Post
  #2 (permalink)  
Old 06-30-2008, 08:05 PM
Niveditha's Avatar
Niveditha Niveditha is offline
Senior Member
 
Join Date: May 2008
Posts: 299
Niveditha is on a distinguished road
Send a message via Skype™ to Niveditha
Hello Prabhu,
You will have to override the default ListCellRenderer with your own (or extend the current one) and create an EmptyBorder with the insets you would like..

JComboBox box = new JComboBox(data);
((BasicComboBoxRenderer)box.getRenderer()).setBord er(new EmptyBorder(0,3,0,3));
__________________
To finish sooner, take your own time....
Nivedithaaaa
Reply With Quote