messages.dialogCancel String (default: "Cancel")

The label of the cancel button in all editor dialogs.

Example

<textarea id="editor"></textarea>
<script>
$("#editor").kendoEditor({
  messages: {
    dialogCancel: "Cancel"
  }
});
</script>
In this article