New to Kendo UI for jQueryStart a free 30-day trial

Title

methods

Gets or sets the title of a Window. When used as a setter, supports chaining.

title

String|Boolean|Object

Default: ""

Returns:String

- If used as a getter, the current Window title. If used as a setter, the method returns the Window object to support chaining.

<div id="dialog"></div>
<script>
$("#dialog").kendoWindow();
var dialog = $("#dialog").data("kendoWindow");
var title = dialog.title();
</script>
<div id="dialog"></div>
<script>
$("#dialog").kendoWindow();
var dialog = $("#dialog").data("kendoWindow");
dialog.title("Hello");
</script>
Not finding the help you need?
Contact Support