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

how to change radwindow title font-family in javascript

1 Answer 122 Views
Window
This is a migrated thread and some comments may be shown as answers.
Elias Sarband
Top achievements
Rank 1
Elias Sarband asked on 06 Apr 2013, 04:33 PM
I want to change font-family of Titlebar of radwindow in javascript .

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 08 Apr 2013, 05:11 AM
Hi,

Please try the following JavaScript.

JavaScript:
<script type="text/javascript">
    function pageLoad() {
        var win = $find('<%=RadWindow1.ClientID %>');
        win._titleElement.style.fontFamily = "Arial Black";
    }
</script>

Thanks,
Princy.
Tags
Window
Asked by
Elias Sarband
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or