Hi,
I have a problem with radwindow. When I open pdf in radwindow and move this radwindow the element send other request and reload the pdf everytime, when I open normal html page not sent other request.
Can I move without everytime reloading?
Thank you.
I have a problem with radwindow. When I open pdf in radwindow and move this radwindow the element send other request and reload the pdf everytime, when I open normal html page not sent other request.
Can I move without everytime reloading?
Thank you.
<head runat="server"> <title></title> <script type="text/javascript"> function LoadUrl() { //var windowURL = document.getElementById("url").value; var oWnd = radopen("http://www.kernel.org", null); oWnd.setSize(900, 400); oWnd.center(); } function LoadPdf() { var oWnd = radopen("http://www.irs.gov/pub/irs-pdf/fw4.pdf", null); oWnd.setSize(900, 400); oWnd.center(); } function LoadGoogle() { var oWnd = radopen("https://docs.google.com/gview?url=http://www.irs.gov/pub/irs-pdf/fw4.pdf", null); oWnd.setSize(900, 400); oWnd.center(); } </script></head><body> <form id="form1" runat="server"> <div> <telerik:RadScriptManager runat="server"></telerik:RadScriptManager> <input type="button" id="url" value="Open Url" onclick="LoadUrl()" /> <input type="button" id="Button1" value="Open Pdf" onclick="LoadPdf()" /> <telerik:RadWindowManager ID="rwm" Modal="true" runat="server"></telerik:RadWindowManager> </div> </form></body></html>