This is what happens when I use openOnClick:
- The root menu consists of three items; none has items with sub-menus, 1 contains a form and the other 2 contain select options.
- If I hover over a menu item, it doesn't open (that's good).
- If I click a menu item, its menu opens (also good).
- If I hover over the other 2 root menu items while one is open, the one I actively opened closes, and the hover action takes over (not good).
I need the root menu's clicked item to be sticky until I
click another root menu item. I don't want the other menu items to open on hover while one is open.
I've experimented with using e.preventDefault in the
close configuration, and it's close to what I need, but not quite.