Hello everyone,
Question about JPopupMenu behavior. I would like the JPopupMenu not to loose focus when it comes up. Also when JPopupMenu is in focus, the user should be able to click/update other parts of the Applet.
Is this possible? Reason is that this JPopupMenu is displaying some codes and it needs to be kept open for reference.
This is what I have now but as soon as the user clicks on the main Applet JPopupMenu looses focus:
JPopupMenu popupMenu = new JPopupMenu();
popupMenu.show(component, x, y);
thanks for your help.