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

Change left side RadWindow icon

5 Answers 171 Views
Window
This is a migrated thread and some comments may be shown as answers.
Jignesh
Top achievements
Rank 1
Jignesh asked on 15 Apr 2010, 06:28 AM
Hello Sir,


I had used in radwindow in more pages.Now i want to change the left side default icon in all the pages.

How i will change the default left icon to my new icon.I want to need any script so i will apply in one user control or my main page so it will be effect to all other my pages, i don't want to change that icon path in all the pages.

So is there any script or css for it will effect to alll the pages?


Please help me.

Thanks & Regards
Jignesh Patel

5 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 16 Apr 2010, 07:15 AM

Hello Jignesh Patel,

I tried following CSS in my application to change the default icon of RadWindow.

CSS:

 
    <style type="text/css">  
        .RadWindow_Default a.rwIcon  
        {  
            backgroundurl('../Images/favIcon.gif') !important;  
        }  
    </style> 

-Shinu.

0
Georgi Tunev
Telerik team
answered on 16 Apr 2010, 07:16 AM
Hello Jignesh,

I believe that this post will be of help.

Regards,
Georgi Tunev
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.
0
Jignesh
Top achievements
Rank 1
answered on 19 Apr 2010, 07:33 AM
Hello Georgi ,

Thanks for giving post link

That post is help full to me and its working fine with below css.

.RadWindow_Default a.rwIcon
        {
            background-image: url("WindowHorizontalSprites.gif") !important;
        }


Thanks & Regards
Jignesh Patel

0
JJ
Top achievements
Rank 1
answered on 09 Oct 2011, 06:49 PM
I used below and doesn't seem to work.

.RadWindow_Default

 

 

a.rwIcon

 

{

 

 

background-image: none !important;

 

 

 

background-image: url('/img/icons/loading.gif') !important;

 

}



 

 

<telerik:RadWindow ID="wndNewReq" runat="server" Modal="true" KeepInScreenBounds="true" CssClass="rwLoading"

 

 

 

Height="450px" Width="700px" Animation="Fade" AutoSizeBehaviors="Default" ShowContentDuringLoad="false"

 

 

 

VisibleStatusbar="false" Behaviors="Close,Move" ReloadOnShow="true"

 

 

 

NavigateUrl="/NewRequest.aspx" />

Anything I did wrong? Thanks.

 

0
Princy
Top achievements
Rank 2
answered on 10 Oct 2011, 05:41 AM
Hello,

You could easily change the left side Radwindow icon by setting the RadWindowManager IconUrl property.
aspx:
<telerik:RadWindowManager ID="RadWindowManager1" runat="server" IconUrl="../Images/customimage.gif">
</telerik:RadWindowManager>

Thanks,
Princy.
Tags
Window
Asked by
Jignesh
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Georgi Tunev
Telerik team
Jignesh
Top achievements
Rank 1
JJ
Top achievements
Rank 1
Princy
Top achievements
Rank 2
Share this question
or