Hi Telerik Team,
i just upgraded my telerik version from Q3 2009 to Q3 2010.
now when i am opening a normal window (not rad window) from javascript, it open the window and automatically minimising .
it need to reopen agin from windows task bar.
if it is Rad Window , there is no problem.
it is happening when replaced the telerik dll to Q3 2010. if i replace the dll to Q3 2009, it is working ok.
please let me know what the updation i need to do in Q3 2010 version.
below the code i used.
i just upgraded my telerik version from Q3 2009 to Q3 2010.
now when i am opening a normal window (not rad window) from javascript, it open the window and automatically minimising .
it need to reopen agin from windows task bar.
if it is Rad Window , there is no problem.
it is happening when replaced the telerik dll to Q3 2010. if i replace the dll to Q3 2009, it is working ok.
please let me know what the updation i need to do in Q3 2010 version.
below the code i used.
function Popup_normal(url, title, width, height) {
var l = (screen.width - width) / 2;
var t = (screen.height - height) / 2;
var feature = "width=" + width + ",height=" + height + ",left=" + l + ",top=" + t + ",scrollbars=1,resizable=1";
mywindow = window.open(url, "title", feature);
return false;
}