saveAs.proxyTargetString
(default: "_self")
A name or keyword indicating where to display the document returned from the proxy.
Example
<div id="imageEditor"></div>
<script>
$("#imageEditor").kendoImageEditor({
saveAs: {
proxyURL: "/save-proxy",
proxyTarget: "_blank",
fileName: "image.png"
}
});
</script>
In this article