title Object|String|Boolean
default: ""
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 dragHandle is 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>