messagesObject
Defines the text of the command buttons that are shown within the PropertyGrid. Used primarily for localization.
Example
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
messages: {
defaultGroupName: "General",
commands: {
details: "Show Details",
excel: "Export to Excel",
group: "Group",
pdf: "Export to PDF",
search: "Search",
sort: "Sort"
}
},
model: {
foo: "bar",
baz: 5
}
});
</script>
In this article