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

problem with popup in IE 9

2 Answers 86 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
nguyen
Top achievements
Rank 1
nguyen asked on 29 Aug 2011, 10:38 AM
Hello all,

  When I update version of telerik to newest (2011.1.519.35) and then i have an example: click radmenu to open a popup. But With IE9 i 've a problem: the popup is not focus like Firefox or google chorme..

i've an eaxmple "TestPopupIE9" below: http://www.mediafire.com/?gdwcci7w6yd3r9r

Please help me fix this.

thank you!

2 Answers, 1 is accepted

Sort by
0
Kate
Telerik team
answered on 29 Aug 2011, 01:56 PM
Hello Nguyen,

In general one way you could handle the scenario that you encounter is to simply use only the following function (see the IE9Issue attached file):
function openRequestedPopup(url,name)
{
    win = window.open(url, name, 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=500,height=500');
    setTimeout(function() {
        win.focus();
    }, 0);
}

Please note that this is not an issue that is related to our controls. I could, however, suggest also that you use RadWindow as a pop-up (see the attached file UsingRadWindow). Please check your references and the web.config file that I altered as well.  

All the best,
Kate
the Telerik team

Thank you for being the most amazing .NET community! Your unfailing support is what helps us charge forward! We'd appreciate your vote for Telerik in this year's DevProConnections Awards. We are competing in mind-blowing 20 categories and every vote counts! VOTE for Telerik NOW >>

0
nguyen
Top achievements
Rank 1
answered on 30 Aug 2011, 03:15 AM
my problem is fixed, thank Telerik very much!
Tags
General Discussions
Asked by
nguyen
Top achievements
Rank 1
Answers by
Kate
Telerik team
nguyen
Top achievements
Rank 1
Share this question
or