excel.forceProxyBoolean
(default: false)
If set to true, the content will be forwarded to proxyURL even if the browser supports saving files locally.
Example
<div id="grid"></div>
<script>
$("#grid").kendoGrid({
columns: [
{ field: "productName" },
{ field: "category" }
],
dataSource: [
{ productName: "Tea", category: "Beverages" },
{ productName: "Coffee", category: "Beverages" }
],
toolbar: ["excel"],
excel: {
forceProxy: true,
proxyURL: "/save"
}
});
</script>
In this article