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

Open RadWindow getting minimised

1 Answer 81 Views
Window
This is a migrated thread and some comments may be shown as answers.
kks
Top achievements
Rank 1
kks asked on 27 Mar 2011, 02:29 PM
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.
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;
        }

1 Answer, 1 is accepted

Sort by
0
Marin Bratanov
Telerik team
answered on 29 Mar 2011, 04:02 PM
Hello,

window.open() is not a Telerik function and should not be related to the version of our dll. These are browser behaviors which highly depend on the state the browser was in when it was last fully closed. Especially with modern browsers utilizing tabs it can not even be fully guaranteed that this function will open a new browser window or just a new tab.


All the best,
Marin
the Telerik team
Tags
Window
Asked by
kks
Top achievements
Rank 1
Answers by
Marin Bratanov
Telerik team
Share this question
or