DataImportedInfo
Object returned by the DataImported event
TypeScript
export interface DataImportedInfo extendsExtends
Properties
| Property | Type | Description |
|---|---|---|
| addedRows | IRowNode[] | Rows that were added |
| importData | any[] | Raw data that was imported |
| updatedRows | IRowNode[] | Rows that were updated |
| adaptableContext | any | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
addedRows
Rows that were added
TypeScript
addedRows: IRowNode[];Property Value
IRowNode[]
importData
Raw data that was imported
TypeScript
importData: any[];Property Value
any[]
updatedRows
Rows that were updated
TypeScript
updatedRows: IRowNode[];Property Value
IRowNode[]
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any