BeforeAdaptableStateChangeInfo
Object returned by the BeforeAdaptableStateChange event, fired before the action is processed by the reducer
TypeScript
export interface BeforeAdaptableStateChangeInfo extendsExtends
Properties
| Property | Description |
|---|---|
| action | The Redux Action that is about to be invoked |
| actionName | Name of the Action about to be performed |
| state | Current Adaptable State (before the Action is applied) |
| adaptableContext | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
action
The Redux Action that is about to be invoked
TypeScript
action: Redux.Action;Property Value
Redux.Action
actionName
Name of the Action about to be performed
TypeScript
actionName: string;Property Value
string
state
Current Adaptable State (before the Action is applied)
TypeScript
state: AdaptableState;Property Value
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any