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

Icon and Width for radwindow

1 Answer 132 Views
Window
This is a migrated thread and some comments may be shown as answers.
Salman
Top achievements
Rank 1
Salman asked on 19 May 2011, 11:29 PM
hi
I want to change icon and header text my radwindow but it not working .My code is

<telerik:RadWindowManager ID="RadWindowManager1" runat="server">

 

 

 

<Windows>

 

 

<telerik:RadWindow runat="server" IconUrl="~/impromptu/att.png" Width="450px" NavigateUrl="DialogTozin.aspx" ID="Window1"></telerik:RadWindow> 

 

 

</Windows>

 

 

 

 

 

</telerik:RadWindowManager>

 

 

I too want when show radwindow it was maximum size default
please help to me

1 Answer, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 20 May 2011, 05:38 AM
Hello Salman,

I have tried the setting IconUrl and that worked as expected at my end. Please make sure that the image path that you set is correct. Another suggesion is to override the default CSS,
<style type="text/css"
        .RadWindow_Default a.rwIcon 
        
            background: url('../Images/calender_left_arrow.jpg') !important
        
    </style>

You could set the InitialBehaviors property to Maximize for opening it as maximized.
  <Windows>
<telerik:RadWindow ID="wdwEmail"  runat="server"  InitialBehaviors="Maximize"  >
</telerik:RadWindow>
</Windows>

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