excelObject
Configures the Excel export settings of the PropertyGrid.
Example
<div id="propertyGrid"></div>
<script>
$("#propertyGrid").kendoPropertyGrid({
excel: {
fileName: "PropertyGrid.xlsx",
forceProxy: true
},
model: {
foo: "bar",
baz: 5
}
});
</script>