<kendo:imageEditor-saveAs>
Sets the saveAs options for the save command. Utilizes the kendo.saveAs method.
Example
<kendo:imageEditor>
<kendo:imageEditor-saveAs></kendo:imageEditor-saveAs>
</kendo:imageEditor>
Configuration Attributes
fileName java.lang.String
Sets the filename of the saved file.
Example
<kendo:imageEditor-saveAs fileName="fileName">
</kendo:imageEditor-saveAs>
forceProxy boolean
If set to true, the content will be forwarded to proxyURL even if the browser supports saving files locally.
Example
<kendo:imageEditor-saveAs forceProxy="forceProxy">
</kendo:imageEditor-saveAs>
proxyTarget java.lang.String
A name or keyword indicating where to display the document returned from the proxy.
Example
<kendo:imageEditor-saveAs proxyTarget="proxyTarget">
</kendo:imageEditor-saveAs>
proxyURL java.lang.String
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
<kendo:imageEditor-saveAs proxyURL="proxyURL">
</kendo:imageEditor-saveAs>