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

How to change the color of loading image for Radwindow loading

1 Answer 121 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
mahesh
Top achievements
Rank 1
mahesh asked on 18 Aug 2011, 07:01 AM
I have radgrid on click of add new record, my radwindow opens up with loading image in green color but i want that to be changed to blue color, and my radwindow skin should remain black only.

This is my code where i am setting the property for radwindow
 <telerik:RadWindowManager ID="RadWindowManager1" runat="server" EnableShadow="true"
                        Skin="Black" >
                        <Windows>
                            <telerik:RadWindow ID="UserListDialog" runat="server" Height="620px" Width="620px"
                                ReloadOnShow="true" ShowContentDuringLoad="false" Modal="true" VisibleStatusbar="false" Animation="Resize"  AutoSize="false" Behaviors="Close"/>
                        </Windows>
                    </telerik:RadWindowManager>

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 18 Aug 2011, 11:07 AM
Hello Mahesh,

The loading image color cannot be replaced. Instead you can use  use your own customized loading image with any color as you wish.
Try the following CSS.
CSS:
<style type="text/css">
.rwLoading
 {
   background: url('../Images/Customloadingimg.gif') !important ;
 }
<style>

Thanks,
Shinu.
Tags
Ajax
Asked by
mahesh
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Share this question
or