Hi
I have placed a RadAjaxLoadingPanel on my page and referenced it on my RadAjaxManagerProxy like so:
The LoadingPanel is used to show a loading gif image when any item inside a repeater is deleted.
The problem is that the loading panel only appears for the first item in the repeater. How can I get it to appear for each Repeater Item?
Thanks.
I have placed a RadAjaxLoadingPanel on my page and referenced it on my RadAjaxManagerProxy like so:
The LoadingPanel is used to show a loading gif image when any item inside a repeater is deleted.
<
telerik:RadAjaxLoadingPanel
ID
=
"MyLoadingPanel"
runat
=
"server"
InitialDelayTime
=
"0"
>
<
asp:Image
ID
=
"MyImage"
runat
=
"server"
ImageUrl
=
"~/images/icons/loading.gif"
/>
</
telerik:RadAjaxLoadingPanel
>
<
telerik:AjaxSetting
AjaxControlID
=
"MyImage"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"MyRepeater"
/>
<
telerik:AjaxUpdatedControl
ControlID
=
"MyLinkButton"
LoadingPanelID
=
"MyLoadingPanel
"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
The problem is that the loading panel only appears for the first item in the repeater. How can I get it to appear for each Repeater Item?
Thanks.