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

Customise Popup

1 Answer 69 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Jaichand
Top achievements
Rank 1
Jaichand asked on 08 Jul 2011, 10:33 AM
We need to customise the popup that is we want to change the "Ok" & "Cancel" button look up & background color
and I also want to change the title of popup as customised.How can I do this please suggest me.

Thanks
Jaichand

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 11 Jul 2011, 07:00 AM
Hello Jaichand,

Try the following CSS to set the style for Popup.

ASPX:
<telerik:RadWindowManager ID="window" runat="server" Title="Delete"></telerik:RadWindowManager>


CSS:
<style type="text/css">
 .RadWindow .rwWindowContent
 {
    background-color:Red !important;
    height: 100% !important;
 }
.RadWindow .rwTitleRow em
 {
    color:Maroon !important;
    
 }
    </style>

You can localize the pop up as shown below.

Javascript:
<script type="text/javascript">
 Telerik.Web.UI.RadWindowUtils.Localization = 
 {
     "OK" : "Yes",
    "Cancel" : "No"
 };
</script>

Thanks,
Princy.
Tags
Menu
Asked by
Jaichand
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or