This is a migrated thread and some comments may be shown as answers.

RadAjaxLoadingPanel (EnableSkinTransparency BackgroundPosition)

1 Answer 80 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
bill
Top achievements
Rank 1
bill asked on 03 Mar 2010, 10:04 PM
*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?

<%@ 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> 

1 Answer, 1 is accepted

Sort by
0
Dimo
Telerik team
answered on 04 Mar 2010, 12:43 PM
Hello Bill,

The RadAjaxLoadingPanel Skin property is not set explicitly in the online demos, because it is set programmatically by the skin chooser on the top-right. Here is some more relevant information:

http://www.telerik.com/help/aspnet-ajax/skins.html

Greetings,
Dimo
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Tags
Ajax
Asked by
bill
Top achievements
Rank 1
Answers by
Dimo
Telerik team
Share this question
or