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

Messages

configuration

Defines the text of the labels that are shown within the dialog. Used primarily for localization.

messages

Object
<div id="dialog"></div>
<script>
$("#dialog").kendoDialog({
  title: "Kendo Dialog Component",
  content: "This is your Kendo Dialog.",
  messages:{
    close: "Close Me!"
  }
});
</script>

The title of the close button.

Default: "Close"

<div id="dialog"></div>
<script>
$("#dialog").kendoDialog({
  title: "Kendo Dialog Component",
  content: "This is your Kendo Dialog.",
  messages:{
    close: "Close Me!"
  }
});
</script>

The title of the prompt input.

Default: "Input"

<div id="dialog"></div>
<script>
$("#dialog").kendoDialog({
  title: "Kendo Dialog Component",
  content: "This is your Kendo Dialog.",
  messages:{
    promptInput: "Input!"
  }
});
</script>