I want to use JCheckBoxMenuItem
s in a JPopupMenu
. It works, but the problem is that the popup menu disappears when a checkbox item has been checked or unchecked. So if one wants to check/uncheck several items, the popup needs to be launched repeatedly, which is irritating.
Curiously, if I use just plain JCheckBox
items in the menu (instead of JCheckBoxMenuItem
s), the behavior is just as it should be: the popup stays there and the checkboxes can be checked/unchecked. Once done, the popup can be closed just by clicking outside it.
How do I make the popup to behave like that when the items there are JCheckBoxMenuItem
s? I would prefer using JCheckBoxMenuItem
s because of their looks.