So I have a dialog box that contains an accordion, and in the accordion I have an unordered list with draggable list items. That all displays just fine.
The problem is, when I go to drag one of these list items, the dragged item appears behind the dialog. I've been messing around with z-indices and trying to make the dragged item's index larger than the dialog (which I can successfully do), but nothing appears to happen.
I was able to overcome this problem with "stack: false", but then my dialog box was always behind everything (including other dialog boxes), which is not what I want.
Does anyone have any insight as to why simply setting z-index doesn't work for the draggable item and how I can fix this problem?