saveAs.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="imageEditor"></div>
<script>
$("#imageEditor").kendoImageEditor({
saveAs: {
forceProxy: true,
proxyURL: "/save",
fileName: "edited-image.png"
}
});
</script>
In this article