Below is my ASPX Code
<
asp:UpdatePanel
runat="server" UpdateMode="Conditional" ID="UpdatePanelED">
<contenttemplate>
<telerik:RadEditor id="RadEditorED" Width="100%" Runat="server" Skin="Outlook">
<Content>
</Content>
</telerik:RadEditor>
<BR />
<CENTER><asp:Button id="btnSaveED" onclick="btnSaveED_Click" runat="Server" CssClass="Normal" Text="Save Extended Detail"></asp:Button></CENTER>
</contenttemplate>
<Triggers><asp:AsyncPostBackTrigger ControlID="lstReportsED"></asp:AsyncPostBackTrigger></Triggers>
</asp:UpdatePanel>
Bloew is my C# save button code.
protected
void btnSaveED_Click(object sender, EventArgs e)
{
ICAdminWebService_V2_2_Long.updateExtendedDetail(Convert.ToInt32(lstReportsED.SelectedValue), RadEditorED.Content);
}
9 Answers, 1 is accepted
I tried to reproduce the problem but unfortunately to no avail. I attached a video capture to show you what I did to reproduce it and a picture of the aspx page code. If there is something I am missing or doing wrong, please let me know.
Sincerely yours,
Check out Telerik Trainer, the state of the art learning tool for Telerik products.

I didn't post my complete code files. I only posted the sections that I thought were causing the error. Is there anyway that I can send you my whole aspx and c# files. I also noticed that it's not just when the scroll bar is moved. The bug is also thrown when I click the save button, and the content area is clicked. This is a very consistent bug.
Below is the section of code from the scriptresource.axd file where the bug is thrown.
Type.prototype.callBaseMethod = function Type$callBaseMethod(instance, name, baseArguments) {
/// <param name="instance"></param>
/// <param name="name" type="String"></param>
/// <param name="baseArguments" type="Array" optional="true" mayBeNull="true" elementMayBeNull="true"></param>
/// <returns></returns>
var e = Function._validateParams(arguments, [
{name: "instance"},
{name: "name", type: String},
{name: "baseArguments", type: Array, mayBeNull: true, optional: true, elementMayBeNull: true}
]);
if (e) throw e;
var baseMethod = this.getBaseMethod(instance, name);
if (!baseMethod) throw Error.invalidOperation(String.format(Sys.Res.methodNotFound, name));
if (!baseArguments) {
return baseMethod.apply(instance);
}
else {
return baseMethod.apply(instance, baseArguments);
}
}
I've bolded the link of code that has the error.
You can open a support ticket to send us a sample project and describe in details the steps to reproduce the problem.
Greetings,
Check out Telerik Trainer, the state of the art learning tool for Telerik products.

I have already answered your support ticket. For your convenience I am pasted my reply below:
You can put the RadEditor inside a RadAjaxPanel instead of UpdatePanel. I made some tests and this error does not occur anymore. Here you can find more information about the RadAjaxPanel:
http://www.telerik.com/help/aspnet-ajax-futures/ajxajaxpanel.html
I hope this will help you resolve your problem.
Best wishes,
Check out Telerik Trainer, the state of the art learning tool for Telerik products.

I am glad that you have managed to fix this problem!
Greetings,
Check out Telerik Trainer, the state of the art learning tool for Telerik products.

I am also facing sampe problem in my code. I am using tha Rad Editor inside the update panel and i have the constraint that i did't replece the update panel to Rad Ajax Manager. I am using the IE 7
Please do needfull.
Is there any way to fix this problem for IE7.
I am looking forward your Quick Response???????????????????????
The 800a025e error is fixed in the latest version of RadEditor (Q1 2010 - version 2010.1.309) and I strongly recommend that you upgrade to it in order to fix the problem.
If you are unable to upgrade (which is the recommended approach for fixing this IE7 problem) you can see the setFocus solution provided in this forum thread: RadEditor setFocus problem.
Sincerely yours,
Rumen
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.