titleObject|String|Booleandefault: ""
The text in the title bar of the Window. If set to false, the Window will be displayed without a title bar.
The title bar buttons of the Window will not be displayed. Unless
dragHandleis configured, this will prevent the Window from dragging.
Example
<div id="dialog"></div>
<script>
$("#dialog").kendoWindow({
title: "Customer details"
});
</script>
Example - creating a Window without a title
<div id="dialog"></div>
<script>
$("#dialog").kendoWindow({
title: false
});
</script>
In this article