Dialog.confirm
|
|
I am having an issue with the Dialog.confirm popup. Everything was working fine until I changed the z-index of one of my divs. Now if I click on my submit button for the first time the Dialog.confim doesn’t disable the form div and actually sits behind it. If I click on cancel then submit it again everything works fine. Any help would be greatly appreciated! Steve var dialogResponse = Dialog.confirm(“test”, {width:300, okLabel: “OK”, className: “alphacube”, id: “myDialogId”, cancel:function(win) {return false;}, ok:function(win) {okSubmitted();return true;} }); |