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

Title

configuration

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.

title

Object|String|Boolean

Default: ""

<div id="dialog"></div>
<script>
$("#dialog").kendoWindow({
  title: "Customer details"
});
</script>
<div id="dialog"></div>
<script>
$("#dialog").kendoWindow({
  title: false
});
</script>

Specifies whether the title text will be encoded.

Default: true

<div id="dialog"></div>
<script>
$("#dialog").kendoWindow({
  title: {
    text: "<b>Customer details</b>",
    encoded: false
  }
});
</script>

The text in the title bar of the Window.

Default: ""

<div id="dialog"></div>
<script>
$("#dialog").kendoWindow({
  title: {
    text: "Customer details"
  }
});
</script>
In this article
titletitle.encodedtitle.text
Not finding the help you need?
Contact Support