messages.commands.excelString(default: "Export to Excel")
Defines the text of the Export to Excel button that exports the component's data in spreadsheet format.
Example
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
messages: {
commands: {
excel: "Export as Spreadsheet"
}
},
model: {
foo: "bar",
baz: 5
}
});
</script>