RadEditor becomes unresponsive when inside an UpdatePanel in Firefox 3.0.6. You can see this behavior on your demo site on the spell checker demo. To duplicate this error, select "Multiple Dictionaries", which causes a partial page postback. Now try to use the editor. The only usable portion of the editor for me is the "Html" and "Preview" tabs. After navigating to either, when you navigate back to "Design" view the editor is usable again. If the ToolbarMode is set to ShowOnFocus, the toolbar will also be usable again. Is this a know issue? Is there anywork around?
From your demo site:
Thanks,
=Joshua
From your demo site:
<asp:ScriptManager id="ScriptManager" runat="server"/> |
<asp:UpdatePanel id="UpdatePanel1" runat="server"> |
<ContentTemplate> |
<div class="bigModule"> |
<div class="bigModuleBottom"> |
<table width="100%"> |
<tr> |
<td valign="top" class="text"> |
Choose tools file: |
<asp:radiobuttonlist repeatdirection="Horizontal" cellpadding="0" cellspacing="0" |
OnSelectedIndexChanged="RadioButtonListDictionaryMode_SelectedIndexChanged" |
cssclass="text" id="RadioButtonListDictionaryMode" |
runat="server" autopostback="True"> |
<asp:listitem value="SingleDictionary" selected="True">Single Dictionary</asp:listitem> |
<asp:listitem value="MultipleDictionaries">Multiple Dictionaries</asp:listitem> |
</asp:radiobuttonlist> |
</td> |
</tr> |
</table> |
</div></div> |
<telerik:radeditor runat="server" ID="RadEditor1" SkinID="BasicSetOfTools" Height="400px"> |
<Content> |
<img alt="product logo" src="../../Img/productLogoLight.gif" />is the successor of the well known industry standard Editor for ASP.NET. The tight integration with ASP.NET AJAX and the powerful new capabilities make Telerik's WYSIWYG Editor a flexible and lightweight component, turning it into the fastest loading Web Editor. Among the hottest features are: |
<ul> |
<li><em>Single-file, drag-and-drop deployment</em></li> |
<li><em>Built on top of ASP.NET AJAX</em></li> |
<li><em>Unmatched loading speed with new semantic rendering </em></li> |
<li><em>Full keyboard accessibility</em></li> |
<li><em>Flexible Skinning mechanism</em></li> |
<li><em>Simplified and intuitive toolbar configuration</em></li> |
<li><em>Out-of-the-box XHTML-enabled output</em></li> |
</ul> |
</Content> |
</telerik:radeditor> |
</ContentTemplate> |
</asp:UpdatePanel> |
Thanks,
=Joshua