by Al Beecy
December 22, 2008
The easiest way to get a Telerik RadAjaxLoadingPanel image to center over the control being updated is to wrap a table around the image:
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server"
Height="100%" Width="75px" Transparency="50">
<table style="height: 100%; width: 100%" border="0">
<tr>
<td width="100%" align="center" valign="middle">
<img src='<%= RadAjaxLoadingPanel.GetWebResourceUrl(Page, "Telerik.Web.UI.Skins.Default.Ajax.loading2.gif") %>'
alt="" style="border: 0px;" />
</td>
</tr>
</table>
</telerik:RadAjaxLoadingPanel>