DataImportedInfo

Object returned by the DataImported event

TypeScript
export interface DataImportedInfo extends
Extends

BaseContext

Properties

PropertyTypeDescription
addedRowsIRowNode[]Rows that were added
importDataany[]Raw data that was imported
updatedRowsIRowNode[]Rows that were updated
adaptableContextanyCustom 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