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

Messages

configuration

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

messages

Object
<div id="prompt"></div>
<script>
$("#prompt").kendoPrompt({
  messages:{
    okText: "OK",
    cancel: "No"
  }
}).data("kendoPrompt").open();
</script>

The title of the Cancel button.

Default: "Cancel"

<div id="prompt"></div>
<script>
$("#prompt").kendoPrompt({
  messages:{
    cancel: "No"
  }
}).data("kendoPrompt").open();
</script>

The title of the OK button.

Default: "OK"

<div id="prompt"></div>
<script>
$("#prompt").kendoPrompt({
  messages:{
    okText: "OK",
  }
}).data("kendoPrompt").open();
</script>