My current setup includes a jquery menu with sub menus within a jquery dialog. You can see it in action here:
http://jsfiddle.net/pnmpn25/VPXjs/17/
$("#menu").menu();
$("#dlg").dialog();
The issue I'm facing is that when I open a sub menu, it gets hidden inside the div and scroll bars start to appear. Ideally, I want the sub menu to overlap the dialog instead of being hidden behind it. I have attempted to adjust the z-index without success, even when using position:absolute.
I found a similar question on this topic but it doesn't have an accepted answer yet:
Problem: Menu UL is always behind jquery dialog
Do you have any suggestions on how to resolve this? Any ideas would be greatly appreciated!