Unplanned
Last Updated: 29 May 2020 16:00 by ADMIN
ADMIN
Marin Bratanov
Created on: 03 Oct 2018 16:40
Category: UI for ASP.NET AJAX
Type: Bug Report
0
JS error when hovering a menu after partial postback when a RadButton is in an UpdatePanel and the Telerik.Web.UI.WebResource.axd URL is encrypted
Simple reproducible is attached to illustrate the problem.

A workaround may be replacing RadButtons that invokes such postbacks with regular buttons and using a form decorator

Alternatively, you can simply disable the handler URL encryption

You can also put the following in the global.asax file to prevent the version from rendering on the page markup
        protected void Application_BeginRequest(object sender, EventArgs e)
        {
			System.Web.HttpContext.Current.Items["_!TelerikVersionStampRendered"] = true;
        }
or you can add the same line in a global Page_Load handler (e.g., in a base page class or in the master page your project uses)
Attached Files:
0 comments