messages.commandsObject

Defines the text and/or title for the command buttons that are used across the component.

Example

<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
    messages: {
        commands: {
            details: "View Details",
            excel: "Export Excel File",
            group: "Group Properties",
            pdf: "Export PDF File",
            search: "Search properties...",
            sort: "Sort Properties"
        }
    },
    model: {
        foo: "bar",
        baz: 5
    }
});
</script>