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