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

Changing the window title style property

1 Answer 885 Views
Window
This is a migrated thread and some comments may be shown as answers.
Sourav
Top achievements
Rank 1
Sourav asked on 04 Nov 2011, 03:17 PM
Hi,

    I want to change the window title style property example I want to do bold the name of the kendo window.

Please guide me to this feature.

Thanks in advance.

Sourav


1 Answer, 1 is accepted

Sort by
0
Richard
Top achievements
Rank 1
answered on 09 Apr 2012, 03:19 PM
The title lives in a span
$titleSpan = $('#myWindow').wrapper.find('.k-window-title');

You can apply a class
$titleSpan.addClass('myTitleClass')

Or specify html
$titleSpan.html('The <b>special</b> report');

Tags
Window
Asked by
Sourav
Top achievements
Rank 1
Answers by
Richard
Top achievements
Rank 1
Share this question
or