DataImportedInfo
Object returned by the DataImported event
TypeScript
export interface DataImportedInfo extendsExtends
Properties
| Property | Description |
|---|---|
| addedRows | Rows that were added |
| importData | Raw data that was imported |
| updatedRows | Rows that were updated |
| adaptableContext | 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