saveAs.proxyURLString
(default: null)
The URL of the server side proxy which will stream the file to the end user. A proxy will be used when the browser isn't capable of saving files locally. Such browsers are IE version 9 and lower and Safari.
Example
<div id="imageEditor"></div>
<script>
$("#imageEditor").kendoImageEditor({
saveAs: {
proxyURL: "/save-proxy",
fileName: "image.png"
}
});
</script>
In this article