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

Messages

configuration

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

messages

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

The title of the Cancel button.

Default: "Cancel"

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

The title of the OK button.

Default: "OK"

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