messages Object

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

Example

<div id="alert"></div>
<script>
$("#alert").kendoAlert({
  messages:{
    okText: "Custom OK text"
  }
}).data("kendoAlert").open();
</script>

messages.okText String (default: "OK")

The title of the OK button.

Example

<div id="alert"></div>
<script>
$("#alert").kendoAlert({
  messages:{
    okText: "Custom OK text"
  }
}).data("kendoAlert").open();
</script>
In this article