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

Rad window not working in IE9

4 Answers 154 Views
Window
This is a migrated thread and some comments may be shown as answers.
Kannan
Top achievements
Rank 1
Kannan asked on 21 Jul 2011, 10:38 AM


Hi,

I am using Telerik dll version 2009.3.1103.35. I had a scenario to popup a window. So i used Radwindow and it was working good with IE7 & IE8. But all in a sudden it was not working for IE9. When i used to click the link to get the popup, the pages just refreshes instead of popup. Is this a telerik dll version problem or something else. Please give me some solution for this problem.

Thanks & Regards
Kannan S

4 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 21 Jul 2011, 11:51 AM
Hello Kannan,

This issue is because you are using older version of the control, you need to upgrade at least to Q1 2011. Q1 2011 is fully compatible with IE9. Check the following KB article which explains more about this.
Updating RadControls for ASP.NET AJAX to another version or license.

Thanks
Shinu.
0
Tom
Top achievements
Rank 1
answered on 04 Aug 2011, 06:07 PM
If you are unable (or unwilling) to upgrade to the latest Telerik release, try this IE9 workaround I found on Telerik's ASP.NET (not AJAX) forum:

Insert a meta tag that forces IE into IE 8 mode:
<meta http-equiv="X-UA-Compatible" content="IE=8" />

And something else important: this tag must appear early in the header, before any link or script tags.

If you wish to insert it programmatically you could do the following in your page's Load event handler:
' Try to force IE9 into IE8 Standards mode
Dim meta As New HtmlMeta()
meta.Attributes.Add("http-equiv", "X-UA-Compatible")
meta.Attributes.Add("content", "IE=8")
Me.Header.Controls.AddAt(0, meta) 'Must insert before any link or script tags!

Hope this helps!

--Tom Huleatt
0
Mihir
Top achievements
Rank 1
answered on 05 Sep 2012, 04:17 PM
Thanks Tom.. This is working fine..
0
vaithyanathan
Top achievements
Rank 1
answered on 12 Apr 2017, 05:39 AM
Hi
Our application developed with Asp.NET 4.5 and Bootstrap3 Telerik version 2015.1.310.40. When mouse over on radwindow main page UI getting collapsed. This issues happening only on IE9. Kindly help me. Thanks in advance.
Tags
Window
Asked by
Kannan
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Tom
Top achievements
Rank 1
Mihir
Top achievements
Rank 1
vaithyanathan
Top achievements
Rank 1
Share this question
or