Object returned by the DataImported event

TypeScript
export interface DataImportedInfo extends
Extends

BaseContext

Properties

PropertyDescription
addedRowsRows that were added
importDataRaw data that was imported
updatedRowsRows that were updated
adaptableContextCustom 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