I was having a similar problem trying to popup a modal window over an existing modal window (in my case, I was popping up a “Save Changes?” type confirmation window over an existing modal “dialog”).
I updated to 2.6, but was still having problems with a “modal over a modal”.
Dimitar’s solution provided here will work to fix that situation with a slight modification:
– you will have to set the z-index to be higher. I don’t know the exact # required, but 30000 worked for me.
– set the z-index for just your confirmation window, not all “.jqx-window” class’s
So something like this:
$("#firstWidnow").jqxWindow({ width: 300, height: 300, isModal: true, autoOpen: false });$("#confirmationMsgWindow").jqxWindow({ width: 300, height: 300, isModal: true, autoOpen: false });$("#confirmationMsgWindow").css("z-index", "30000");
Jake