I am trying to open up a RADWindow prompt from inside of a RADWindow modal, but it comes up behind the modal and can't be accessed. I am using the following javascript code to open the prompt:
| <script type="text/javascript" language="javascript"> |
| function GetRadWindow() |
| { |
| var oWindow = null; |
| if (window.radWindow) |
| oWindow = window.radWindow; |
| else if (window.frameElement.radWindow) |
| oWindow = window.frameElement.radWindow; |
| return oWindow; |
| } |
| </script> |
GetRadWindow().BrowserWindow.radprompt('prompt', callBackfnc, 250, 100, null,'Title', 'defValue'); |
How can I make the model the owner of the prompt so that it appears over it?
Thanks,
--Richard