AdaptableStateChangedInfo

Object returned by the AdaptableStateChanged event

TypeScript
export interface AdaptableStateChangedInfo extends
Extends

BaseContext

Properties

PropertyDescription
actionThe Redux Action that was invoked
actionNameName of the Action
newStateAdaptable State after the Action
oldStateAdaptable State before the Action
adaptableContextCustom 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

AdaptableState

oldState

Adaptable State before the Action

TypeScript
oldState: AdaptableState;
Property Value

AdaptableState

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any