messages Object

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

Example

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

messages.close String (default: "Close")

The title of the close button.

Example

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

messages.promptInput String (default: "Input")

The title of the prompt input.

Example

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