CustomDestination
Defines a custom Export destination
TypeScript
export interfaceProperties
| Property | Description |
|---|---|
| form | Optional Adaptable Form; if provided, it must include Buttons that will execute the Export |
| name | Name of Custom Destination (mandatory) |
| onExport | Optional Function invoked when Export is applied (used if no form is supplied) |
Property Details
form
Optional Adaptable Form; if provided, it must include Buttons that will execute the Export
TypeScript
form?: AdaptableForm<ExportFormContext>;Property Value
AdaptableForm<ExportFormContext>
name
Name of Custom Destination (mandatory)
TypeScript
name: string;Property Value
string
onExport
Optional Function invoked when Export is applied (used if no form is supplied)
TypeScript
onExport?: (reportContext: ReportContext) => void;Property Value
(reportContext:ReportContext) => void