DataChangeHistoryContext
The context for the DataChangeHistoryButton
TypeScript
export interface DataChangeHistoryContext<TData = any> extendsExtends
Properties
| Property | Description |
|---|---|
| clearRow | Helper function to row from Grid |
| dataChangedInfo | The initial data change |
| isGroupNode | If the change references a group node. |
| parentAdapTableApi | AdapTable API of underlying Grid (not from Data History Monitor) |
| undoDataChange | Helper function to undo the change. |
| adaptableContext | Custom 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
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