ExcelComponent
Configures the settings for the export of Grid in Excel (see example).
Selector
kendo-grid-excel
Inputs
Name | Type | Default | Description |
---|---|---|---|
collapsible |
|
Specifies if the groups in the Excel file are collapsible. | |
creator? |
|
The author of the workbook. | |
date? |
|
The date on which the workbook was created. Defaults to | |
fetchData |
|
The function that is used to get the exported data options. By default, uses the current data and group of the Grid. To export data that is different from the current Grid data, provide a custom function. | |
fileName |
|
|
Specifies the file name of the exported Excel file. |
filterable |
|
Enables or disables column filtering in the Excel file. This behavior is different from the filtering feature of the Grid. | |
forceProxy |
|
If set to | |
headerPaddingCellOptions |
|
If the data is grouped, the options of the cells that are inserted before the header cells to align the headers and the column values. | |
paddingCellOptions |
|
If the data is grouped, the options of the cells that are inserted before the data, group, and footer cells to indicate the group hierarchy. | |
proxyURL |
|
The URL of the server-side proxy which streams the file to the end user. Using a proxy is required if the browser is not capable of saving files locally. Optionally, set up a proxy to reduce memory usage. This avoids copying the file contents in memory,
but transmits it over the network instead. For this use case, set forceProxy to In the request body, the proxy receives a POST request with the specific parameters. See example.
The proxy returns the decoded file with the For details on the server-side proxy usage and implementation, see the File Saver documentation. |