Hi,
Consider the following code:
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
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
