I am given a task to port a java application with a JComboBox from OS2 to Windows.
The JComboBox in OS2(JRE1.4) has a behavoir that when the popup is open, user click on other windows, the popup remains open. But when that run in Windows (JRE1.6), user clicked on other windows, JComboBox will close automatically.
How can i achieve the same behavior in Windows? I want it remain opened…
not possible,
JComboBoxes popup always to hide onfocusLost, these changes were fixed in Java 1.4have to create own
Componentthat simulating funcionalities fromJComboBox,popup windowshould be based onJDialog / JWindow(strongly don’t suggest that…)