DataChangeHistoryContext

The context for the DataChangeHistoryButton

TypeScript
export interface DataChangeHistoryContext<TData = any> extends
Extends

ActionColumnContext

Properties

PropertyTypeDescription
clearRow() => voidHelper function to row from Grid
dataChangedInfoCellDataChangedInfo<TData>The initial data change
isGroupNodebooleanIf the change references a group node.
parentAdapTableApiAdaptableApiAdapTable API of underlying Grid (not from Data History Monitor)
undoDataChange() => voidHelper function to undo the change.
adaptableContextanyCustom application Context provided in AdaptableOptions.adaptableContext

Property Details

clearRow

Helper function to row from Grid

TypeScript
clearRow: () => void;
Property Value

() => void

dataChangedInfo

The initial data change

TypeScript
dataChangedInfo: CellDataChangedInfo<TData>;
Property Value

CellDataChangedInfo<TData>

isGroupNode

If the change references a group node.

TypeScript
isGroupNode: boolean;
Property Value

boolean

parentAdapTableApi

AdapTable API of underlying Grid (not from Data History Monitor)

TypeScript
parentAdapTableApi: AdaptableApi;
Property Value

AdaptableApi

undoDataChange

Helper function to undo the change.

TypeScript
undoDataChange: () => void;
Property Value

() => void

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any