Hello,
I have a user control with RadEditor, and then I load this user control into a RadDock object. I set the Ajax manager proxy to update the RadEditor. However, when I click the editor pencil icon, cancel/update button, the loading panel is not showing any image or loading text.
Thank you in advance for any help.
I have a user control with RadEditor, and then I load this user control into a RadDock object. I set the Ajax manager proxy to update the RadEditor. However, when I click the editor pencil icon, cancel/update button, the loading panel is not showing any image or loading text.
Thank you in advance for any help.
| <%@ Control Language="C#" AutoEventWireup="true" CodeBehind="HTMLModule.ascx.cs" Inherits="HLS.modules.HTMLModule" %> |
| <asp:ScriptManagerProxy ID="HTMLModuleSMP" runat="server"></asp:ScriptManagerProxy> |
| <telerik:RadAjaxManagerProxy ID="HTMLModuleRAMP" runat="server"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="HTMLEditor"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="HTMLEditor" LoadingPanelID="HTMLEditorALP" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManagerProxy> |
| <radE:RadEditor ID="HTMLEditor" runat="server" |
| CausesValidation="False" |
| OnCancelClicked="HTMLEditor_CancelClicked" |
| OnSubmitClicked="HTMLEditor_SubmitClicked" |
| EnableViewState="False" |
| Width="100%" |
| Height="650px" |
| Editable="false" |
| > |
| </radE:RadEditor> |
| <telerik:RadAjaxLoadingPanel ID="HTMLEditorALP" runat="server" Height="75px" Width="75px" > |
| <asp:Image ID="Image1" runat="server" AlternateText="Loading..." ImageUrl="~/RadControls/Ajax/Skins/Default/Loading.gif" /></telerik:RadAjaxLoadingPanel> |