DataChangeHistoryContext

The context for the DataChangeHistoryButton

TypeScript
export interface DataChangeHistoryContext<TData = any> extends
Extends

ActionColumnContext

Properties

PropertyDescription
clearRowHelper function to row from Grid
dataChangedInfoThe initial data change
isGroupNodeIf the change references a group node.
parentAdapTableApiAdapTable API of underlying Grid (not from Data History Monitor)
undoDataChangeHelper function to undo the change.
adaptableContextCustom 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