title String|Boolean
default: ""
The text in the dialog title bar. If false
, the dialog will be displayed without a title bar.
Example
<div id="dialog"></div>
<script>
$("#dialog").kendoDialog({
title: "Customer details",
content: "This is your Kendo Dialog.",
});
</script>
Example - create a dialog without a title
<div id="dialog"></div>
<script>
$("#dialog").kendoDialog({
title: false,
content: "This is your Kendo Dialog.",
});
</script>