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

RadNotification Not Working in IE8

4 Answers 64 Views
Notification
This is a migrated thread and some comments may be shown as answers.
Edward Sudit
Top achievements
Rank 1
Edward Sudit asked on 27 Oct 2011, 02:51 PM
I implemented the RadNotification control on my website and it works great in IE9 and FF.  When I browse to the site using IE8, an "Unspecified Javascript Error" dialog pops up and the notification control never displays.  Please help!!!

4 Answers, 1 is accepted

Sort by
0
Marin Bratanov
Telerik team
answered on 28 Oct 2011, 09:50 AM
Hi Edward,

When a JavaScript error is thrown on the page scripts are no longer executed and thus the RadNotification cannot be shown, because it relies on JavaScript.

The error you report is quite generic and with just that information there is no way to tell what the reason for it may be. You need to debug your site and see where it originates. In case this comes from your custom scripts/functionality you would need to resolve this before any other JavaScript based controls can work on your page.


Regards,
Marin
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now
0
Colin
Top achievements
Rank 1
answered on 03 Oct 2013, 04:35 PM
I get a similar issue but I have no errors on my page. 
I'm running in IE8 with Windows XP. 

The timer that is built into the RadNotification control does still work, I can also get a reference to the control via javascript. 

0
Marin Bratanov
Telerik team
answered on 04 Oct 2013, 01:27 PM
Hi Colin,

Could you clarify what is the exact issue you are having? The OP has a JS error and if none is present in your case things should be running smoothly.

If you still cannot see the notification I can suggest you try setting its Pinned property to false so instead of fixes position it will use absolute. If your browser is in quirks mode it may be going towards IE6 mode, so it may not understand the position: fixed rule.

If this is not your case I would need some code that shows the problem so I can help further.


Regards,
Marin Bratanov
Telerik
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to the blog feed now.
0
RBarnes
Top achievements
Rank 1
answered on 17 Jan 2014, 10:50 PM

I had a similar issue with IE8 and corrected my issue by removing a reference to an external jquery.js file and replacing with the below to use the jquery from telerik.

This might save someone some headaches.

Roger

<telerik:RadScriptManager ID="RadScriptManager1" runat="server">

<Scripts>

<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" />

<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" />

<asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryInclude.js" />

</Scripts>

</telerik:RadScriptManager>

Tags
Notification
Asked by
Edward Sudit
Top achievements
Rank 1
Answers by
Marin Bratanov
Telerik team
Colin
Top achievements
Rank 1
RBarnes
Top achievements
Rank 1
Share this question
or