Search results

ExportOptions API in JavaScript Schedule API control

An interface that holds export options.

Properties

customData

Record[]

The custom data collection can be exported by passing them through the customData option.

exportType

ExcelFormat

The exportType allows you to set the format of an Excel file to be exported either as .xlsx or .csv.

fields

string[]

The custom or specific field collection of event dataSource to be exported can be provided through fields option.

fieldsInfo

ExportFieldInfo[]

Specifies the collection of field name and its header text to export to excel. If this list is empty, the scheduler exports based on fields. If both fieldsInfo and fields are empty then the scheduler exported all the fields.

fileName

string

The fileName denotes the name to be given for the exported file.

includeOccurrences

boolean

There also exists option to export each individual instances of the recurring events to an Excel file, by setting true or false to the includeOccurrences option, denoting either to include or exclude the occurrences as separate instances on an exported Excel file.

separator

string

Defines the delimiter for csv file export. By default, csv files are using comma(,) as separator. You can specify this property to change the delimiter in csv file.