New to KendoReactStart a free 30-day trial

SaveOptions

Interface

An interface which defines the configuration options for the saveAs function. See Server Proxy documentation.

Definition

Package:@progress/kendo-file-saver

Properties

If set to true, the content is forwarded to proxyURL even if the browser supports the local saving of files. By default, the value is false.

proxyData?

{ [key: string]: string }

A key/value dictionary of form values that will be sent to the proxy. Can be used to submit anti-forgery tokens and other metadata.

A name or keyword which indicates where to display the document that is returned from the proxy.

To display the document in a new window or an iframe, the proxy has to set the "Content-Disposition" header to inline; filename="<fileName.ext>".

By default, the value is _self.

proxyURL?

string

The URL of the server-side proxy which streams the file to the end user. When the browser is not capable of saving files locally, the proxy will be used. See Proxy Request and Response documentation.