messagesObject

Defines the text of the command buttons that are shown within the Grid. Used primarily for localization.

Example - change the messages

<div id="grid"></div> <script> $("#grid").kendoGrid({ columns: [ { field: "name" }, { field: "age" }, { command: ["edit", "destroy"] } ], dataSource: [ { name: "Jane Doe", age: 30 }, { name: "John Doe", age: 33 } ], toolbar: ["create", "save", "cancel"], messages: { commands: { cancel: "Cancel changes", canceledit: "Cancel", create: "Add new record", destroy: "Delete", edit: "Edit", save: "Save changes", select: "Select", update: "Update" } } }); </script>
In this article
messagesRelated Properties
Not finding the help you need?
Contact Support