I am using Radwindow's Confirmation window. I have .pdf file inside Iframe template on my page. When I open confirmation window, it opens on PDF file. So I am not getting the window Clearly. I got the window with some part missing, meaning whatever the part of ConfirmWindow goes on that pdf file,doesn't get displayed (pdf file overlayes it). And I have noticed after opening the window whole page get disabled except that pdf file. User can still click on pdf file with having confirmwindow on page. so i also want user not to click on anywhere until they close the window.
I have set the Radwindows Overlay Peoperty to True. Is there any other property that I need to set or what extra code do I need to write?
Here is my Code,
I have set the Radwindows Overlay Peoperty to True. Is there any other property that I need to set or what extra code do I need to write?
Here is my Code,
<telerik:RadWindowManager id="Singleton" runat="server" EnableEmbeddedSkins="false" Overlay="true" Behaviors="Move,Close" > </telerik:RadWindowManager>
<asp:Button ID="btn1" runat="server" Text="Submit"
OnClientClick="radconfirm('Are you sure ?', confirmYes, 300, 100); return false;"/>
function confirmYes(arg)
{if(arg == true){
__doPostBack('btnYes','')}
}
Please give me any solution.
Thanks,
Tarulatta Patel.