<
telerik:RadAjaxManagerProxy
ID
=
"RadAjaxManagerProxyTopic"
runat
=
"server"
>
<
AjaxSettings
>
<
telerik:AjaxSetting
AjaxControlID
=
"RadTabStripTopic"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"RadTabStripTopic"
/>
<
telerik:AjaxUpdatedControl
ControlID
=
"RadMultiPageTopicSubforms"
LoadingPanelID
=
"RadAjaxLoadingPanel_Topic"
/>
<
telerik:AjaxUpdatedControl
ControlID
=
"userMessageDisplay"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
<
telerik:AjaxSetting
AjaxControlID
=
"RadMultiPageTopicSubforms"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"RadTabStripTopic"
/>
<
telerik:AjaxUpdatedControl
ControlID
=
"RadMultiPageTopicSubforms"
LoadingPanelID
=
"RadAjaxLoadingPanel_Topic"
/>
<
telerik:AjaxUpdatedControl
ControlID
=
"RadGridTopic"
/>
<
telerik:AjaxUpdatedControl
ControlID
=
"userMessageDisplay"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
</
AjaxSettings
>
</
telerik:RadAjaxManagerProxy
>
protected void TopicTabForm_AfterUpdate(object sender, EventArgs e)
{
RadAjaxManager ajaxManager = RadAjaxManager.GetCurrent(Page);
ajaxManager.AjaxSettings.AddAjaxSetting(sender as Control, this.RadGridTopic);
masterGrd.set_currentPageIndex(0);
masterGrd.set_currentPageIndex(0);<
br
><
span
style
=
"font-size: 13.63636302947998px;"
>masterGrd</
span
>.rebind();
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="products.aspx.cs" Inherits="products"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
>
<
title
><%Response.Write(ConfigurationManager.AppSettings["AdminTitle"]); %></
title
>
<
link
href
=
"aStyleSheet.css"
rel
=
"stylesheet"
type
=
"text/css"
/>
<
link
href
=
"aMenuStyle.css"
rel
=
"stylesheet"
type
=
"text/css"
/>
<
link
href
=
"aPageDesign.css"
rel
=
"stylesheet"
type
=
"text/css"
/>
<
link
href
=
"webworld_calendar.css"
rel
=
"stylesheet"
type
=
"text/css"
/>
<
script
language
=
"javascript"
type
=
"text/javascript"
src
=
"jscripts/webworld_calendar.js"
></
script
>
<
script
language
=
"javascript"
type
=
"text/javascript"
>
function confirmMsg(msg){
if(!confirm(msg)){
return false;
} else {
return true;
}
}
function GetFileName() {
var upload = $find("<%= RUCatImage.ClientID %>")
var filePath = upload.getFileInputs()[0].value;
var fileName = filePath.substring(filePath.lastIndexOf("\\") + 1);
document.getElementById("<%= Txt_CatImage.ClientID %>").value = fileName;
}
</
script
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
telerik:RadStyleSheetManager
ID
=
"RadStyleSheetManager1"
runat
=
"server"
>
</
telerik:RadStyleSheetManager
>
<
telerik:RadScriptManager
ID
=
"RadScriptManager1"
runat
=
"server"
></
telerik:RadScriptManager
>
<
telerik:RadImageEditor
ID
=
"RadCatImgEdit"
runat
=
"server"
ToolsFile
=
"~/App_Data/ImageEditor.xml"
>
</
telerik:RadImageEditor
>
</
form
>
</
body
>
</
html
>
If you have some of these errors only on IE10, and your site is working in other browser, it is most probably that the MicrosoftAjaxWebForms.js fails to be included in the scripts for your page. This is known to be caused by bug in the browser definition files in .NET 4.0 and .NET 2.0 used by the ASP.NET.
Since the RadControls are made on top of the AjaxWebForms,if the Microsoft's scripts are not loaded properly, the RadControls will not work as well. For example if you have RadAjaxManager in your page, it's initialization will fail, when PageRequestManager is requested, you might think at first that the problem is in the RadAjaxManager, but on later look you see that the PageRequestManager is defined inside the MicrosoftAjaxWebForms.js where is the actual problem.
You have several options to confirm that this is the issue:
Luckily there is solution for the problem: .NET fix for your server released by Microsoft.
For .NET 4.0 check this one: http://support.microsoft.com/kb/2600088
For .NET 2.0:
http://support.microsoft.com/kb/2600100 for Win7 SP1/Windows Server 2008 R2 SP1, Windows Vista/Server 2008, Windows XP/Server 2003
http://support.microsoft.com/kb/2608565 for Win7/Windows Server 2008 R2 RTM
Since the problem is not particularity in the RadControls, you might find usable information out in the web, see this blog post by Scott Hanselman for more information:
Bug and Fix: ASP.NET fails to detect IE10 causing _doPostBack is undefined JavaScript error or maintain FF5 scrollbar position
All the best,
Vasil,
the Telerik team