*EDIT - RESOLVED*
To solve this issue I set the Skin property, they should add that to their demo code.
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
I tried setting up a simple loading panel using
http://demos.telerik.com/aspnet-ajax/ajax/examples/loadingpanel/loadingimages/defaultcs.aspx
I have a couple issues. First, I don't see where they specify an image or anything else inside the loading panel. Also, transparency and background position are not working. The only code behind I have was to handle button click which causes a thread sleep, so I didn't see the point of adding it. I'm using Telerik.Web.UI version 2009.1.527.20. Is anybody else having this problem?
To solve this issue I set the Skin property, they should add that to their demo code.
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
I tried setting up a simple loading panel using
http://demos.telerik.com/aspnet-ajax/ajax/examples/loadingpanel/loadingimages/defaultcs.aspx
I have a couple issues. First, I don't see where they specify an image or anything else inside the loading panel. Also, transparency and background position are not working. The only code behind I have was to handle button click which causes a thread sleep, so I didn't see the point of adding it. I'm using Telerik.Web.UI version 2009.1.527.20. Is anybody else having this problem?
| <%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Test.aspx.vb" Inherits="MassMemberMoveUI.Test" %> |
| <%@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %> |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| <html xml:lang="en-US" xmlns="http://www.w3.org/1999/xhtml"> |
| <head id="Head1" runat="server"> |
| <title></title> |
| </head> |
| <body> |
| <form runat="server" id="mainForm" method="post"> |
| <!-- content start --> |
| <telerik:RadScriptManager ID="ScriptManager1" runat="server" /> |
| <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="Panel1"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="Panel1" LoadingPanelID="RadAjaxLoadingPanel1" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |
| <fieldset> |
| <asp:Panel ID="Panel1" runat="server" HorizontalAlign="Center" Height="275px"> |
| <asp:Button ID="Button1" runat="server" Text="Click to see the loading image" OnClick="Button1_Click" |
| Style="margin-top: 15px; margin-left: 15px" /> |
| </asp:Panel> |
| </fieldset> |
| <telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" runat="server" EnableSkinTransparency="true" |
| BackgroundPosition="Bottom"> |
| </telerik:RadAjaxLoadingPanel> |
| <!-- content end --> |
| </form> |
| </body> |
| </html> |
