Re: keep open JComboBox drop-down list



jessu wrote:

Try setting ListCellRenderer. This allows you to show the component
that you wanted as the rendere of the JComboBox


--------------- FeedTV : http://www.feedfeeds.com/feedtv



Thanks jessu.
I have added the following lines onto my cell renderer method. It works fine as expected.
------------
if (isSelected && (! masterBox.isPopupVisible()) // currently non-visible
&& prefix.equals("- ")){ // sub items expanded
masterBox.showPopup();
masterBox.setPopupVisible(true);
}
------------
Thanks again and I re-respect people on cljg much more highly than ever.
But ... I don't understand why showPopup() doesn't work from action listener .... ???



.