Hi
I have a RadGrid (RadAjaxManager) with a WebUserControl (RadAjaxManagerProxy).
The RadAjaxManager code is as follows ...
<telerik:RadAjaxManager ID="ramLogs" runat="server" ClientEvents-OnRequestStart="ConditionalPostback" ClientEvents-OnResponseEnd="EnableAjax" EnableAJAX="true" EnablePageHeadUpdate="true">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="rgLogs">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="rgLogs" LoadingPanelID="ralpLogs" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
And the RadAjaxManagerProxy Code is ....
<
telerik:RadAjaxManagerProxy ID="ramprgLogs" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="rwmrgLogs">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="rwmrgLogs" LoadingPanelID="ralprgLogs" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="bResolved">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="bResolved" LoadingPanelID="ralprgLogs" />
<telerik:AjaxUpdatedControl ControlID="tdResolvedDate1" />
<telerik:AjaxUpdatedControl ControlID="tdResolvedDate2" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="bNewThread">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="bNewThread" LoadingPanelID="ralprgLogs" />
<telerik:AjaxUpdatedControl ControlID="trDate" />
<telerik:AjaxUpdatedControl ControlID="trReceiptMethod" />
<telerik:AjaxUpdatedControl ControlID="trVisibleToClient" />
<telerik:AjaxUpdatedControl ControlID="trThread" />
<telerik:AjaxUpdatedControl ControlID="trAttachments" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="sThread">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="sThread" LoadingPanelID="ralprgLogs" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</
telerik:RadAjaxManagerProxy>
The problem is that the RadAjaxLoadingPanel stays on the screen after the Ajax Request has finished.
Also my RadEditor does not render correctly the first time it is displayed from a hidden state. The second time it displays it works correctly.
Any ideas ?
Kind Regards
David