AdaptableStateChangedInfo
Object returned by the AdaptableStateChanged event
TypeScript
export interface AdaptableStateChangedInfo extendsExtends
Properties
| Property | Description |
|---|---|
| action | The Redux Action that was invoked |
| actionName | Name of the Action |
| newState | Adaptable State after the Action |
| oldState | Adaptable State before the Action |
| adaptableContext | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
action
The Redux Action that was invoked
TypeScript
action: Redux.Action;Property Value
Redux.Action
actionName
Name of the Action
TypeScript
actionName: string;Property Value
string
newState
Adaptable State after the Action
TypeScript
newState: AdaptableState;Property Value
oldState
Adaptable State before the Action
TypeScript
oldState: AdaptableState;Property Value
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any