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

IE9 RadEditor in UpdatePanel Submits Content Unchanged

3 Answers 100 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Jeff Paetkau
Top achievements
Rank 1
Jeff Paetkau asked on 24 Mar 2011, 11:05 PM
Hi,

Consider the following code:
<rad:RadScriptManager ID="RadScriptManager1" runat="server" />
<asp:UpdatePanel runat="server" ID="UpdatePanel"><ContentTemplate>
    <rad:RadEditor runat="server" ID="Editor" />  
    <asp:Button runat="server" Text="Submit" OnClick="Submit_Click" />
    <div runat="server" ID="Output"></div>
</ContentTemplate></asp:UpdatePanel>
protected void Page_Load(object sender, EventArgs e)
{
    if (!IsPostBack)
        Editor.Content = "Hello World";
}
 
protected void Submit_Click(object sender, EventArgs e)
{
    Output.InnerHtml = Editor.Content;
}


Follow the following steps:
 1) Replace "Hello World" in the editor with "Telerik RadEditor"
 2) Press Submit

Expected result:
"Telerik RadEditor" should remain in the editor and also appear in the div below the submit button

Actual results:
 Firefox 4 - As expected
 Chrome 10 - As expected
 IE 8 - As expected
 IE 9 - The editor resets to "Hello World". "Hello World" also appears in the div below the submit button

3 Answers, 1 is accepted

Sort by
0
Marin Bratanov
Telerik team
answered on 25 Mar 2011, 03:48 PM
Hi Jeff,

Please use the current tags <telerik:...., the <rad:.... tags have been used in older versions of the controls.

This is an issue with the browser's implementation of the MS AJAX framework. To work around it you need to set the UseSubmitBehavior property of the button to false. More information and an alternative solution is available in the following KB article: http://www.telerik.com/support/kb/aspnet-ajax/editor/radeditor-content-not-saved-after-ajax-update-in-firefox-google-chrome-and-safari.aspx.  This behavior has been reported for ff3.6, IE9 and IE8 since the time the article has been written.


Greetings,
Marin
the Telerik team
0
Debashis Pyne
Top achievements
Rank 1
answered on 03 May 2011, 10:16 AM
Hi,

Can anyone please confirm that Rad window now supports IE9?

Since we already have a live version of IE9, we would definelty like to use the controls in the new browser version.

Please let me know.

Thanks

Debashis
0
Rumen
Telerik team
answered on 03 May 2011, 04:06 PM
Hi Debashis,

The latest official version 2011.1.413 of RadControls for ASP.NET AJAX Q1 2011 SP1 including RadWindow supports IE9.

All the best,
Rumen
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

Tags
Editor
Asked by
Jeff Paetkau
Top achievements
Rank 1
Answers by
Marin Bratanov
Telerik team
Debashis Pyne
Top achievements
Rank 1
Rumen
Telerik team
Share this question
or