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

RadOpen not working in IE 9 ?

1 Answer 65 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Em4o
Top achievements
Rank 2
Em4o asked on 15 Dec 2011, 09:10 PM

Hi,

Radopen was working correctly with IE6,7 and 8, BUT it is not working with IE9.
i am using 2010.2.929.35 dll version of Telerik . Is this version compatible with IE9 or i need t to upgrade it?
I read in other posts that i can use - meta tag like <meta http-equiv="X-UA-Compatible" content="IE=8" />, is this the
only solution for this?

my js script is looking like this (it is on master page and i make call to it from content pages)

function newWin(url, title, height, width, modal, onClose) {

            var win = radopen(url);
            win.set_height(height);
            win.set_width(width);
            win.set_title(title);
            if (modal == true)
                win.set_modal(true);
            win.center();
            if (onClose != undefined)
                win.add_close(onClose);
            return win;
        }

I will expect your answer for solution of this

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 16 Dec 2011, 05:35 AM
Hello,

Check the following forum thread which discussed similar scenario.
radopen() is not working properly on IE 9.

-Shinu.
Tags
General Discussions
Asked by
Em4o
Top achievements
Rank 2
Answers by
Shinu
Top achievements
Rank 2
Share this question
or