title.encoded Boolean
default: true
Specifies whether the title text will be encoded.
Example
<div id="dialog"></div>
<script>
$("#dialog").kendoWindow({
title: {
text: "<b>Customer details</b>",
encoded: false
}
});
</script>