This is a migrated thread and some comments may be shown as answers.

window.radopen is not working in browsers like IE8+, Chrome, Mozilla etc

1 Answer 148 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
Anup
Top achievements
Rank 1
Anup asked on 31 Oct 2014, 07:10 PM
Hi All,
Recently we migrated one of our web solution from visual studio 2005 to visual studio 2013. In this conversion we are not upgrading our  DLLs (including RAD and Telerik), DLLs are  having same old versions.  
Our target framework is .Net FrameWork 2.0.
  
Our application is not working properly with RAD controls in browsers like IE8+, Chrome, Mozilla etc.
  
Mainly we are facing issue with window.radopen.
  
Instead of showing Pop-Ups, Its throwing error in Browsers.
We have attached Error Image of respective browser:
A. IE 8+: error_IE8+.png
B. Chrome: error_Chrome.png
C. Mozilla: error_Mozilla.png

We are using RadWindow.Net2 of version 1.6.1.0 and using following function to open Popup , the same function and our web solution with same DLLs is working fine in IE 8 and IE7.
function Show(flgURL,windowName)
{             
        try{
            var oWidth=400;
            var oHeight=320;
              
            var oWnd = window.radopen(null, windowName );
            var sUrl = flgURL;                    
            oWnd.SetSize (oWidth,oHeight);
              oWnd.Top= 100;
              oWnd.SetStatus(" ");
           oWnd.SetUrl(sUrl);
               
            return false;
            }catch(err)
            {
                alert(err);
            }
        }
Please suggest us any suitable solution to resolve this issue.

1 Answer, 1 is accepted

Sort by
0
Marin Bratanov
Telerik team
answered on 03 Nov 2014, 02:38 PM

Hello,

I suggest having a look at this thread that treats the same problem: http://www.telerik.com/community/forums/window-radopen-is-not-working-in-browsers-like-ie8-chrome-mozilla-etc.


Regards,

Marin Bratanov
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
Ajax
Asked by
Anup
Top achievements
Rank 1
Answers by
Marin Bratanov
Telerik team
Share this question
or