I try to create a popup menu that contains a JTable and that can show other popup menu. The JTable has mouse listener so that when a menu item has other item to show a new JPopupMenu is created with a JTable inside and so on. The problem I have is that there is only one popup menu showing at a time. Every time a menu from my JTable popup menu has to show another popup menu, the previous popup disappear.
Asked
Active
Viewed 272 times
0
-
3Swing only supports one `JPopupMenu` at a time – Robin Nov 08 '12 at 10:45
-
agreed long time registred as bug, you can to replace JPupup with un_decorated JDialog, – mKorbel Nov 08 '12 at 10:53
-
Ok thank you, I'll try with JDialog. – jerome Nov 08 '12 at 11:09