Hi,
in my application i have a button that displays a modal popup. in that Modal i have a button that displays another modal popup.
the issue is the second popup shows behind the first one. I have read where people are suggesting using setActive to bring the second modal forward (ontop)
however when i try and get do this using the following code.
window.parent.purchaseLicense(licenseTypeId, ownerId, licenseIdToUpgrade, onLicensePurchased);
oWindow = window.frameElement.radWindow;
setTimeout(function () { oWindow.setActive(true); }, 0);
Owindow is coming back with the first Modal.
How can i get the second modal and show that ontop?
As you can see the second modal is coming from the parent because i don't want it to be inside the other.
thoughts?
in my application i have a button that displays a modal popup. in that Modal i have a button that displays another modal popup.
the issue is the second popup shows behind the first one. I have read where people are suggesting using setActive to bring the second modal forward (ontop)
however when i try and get do this using the following code.
window.parent.purchaseLicense(licenseTypeId, ownerId, licenseIdToUpgrade, onLicensePurchased);
oWindow = window.frameElement.radWindow;
setTimeout(function () { oWindow.setActive(true); }, 0);
Owindow is coming back with the first Modal.
How can i get the second modal and show that ontop?
As you can see the second modal is coming from the parent because i don't want it to be inside the other.
thoughts?