AdaptableStateReloadedInfo

Object returned by the AdaptableStateReloaded event

TypeScript
export interface AdaptableStateReloadedInfo extends
Extends

BaseContext

Properties

PropertyDescription
newStateAdaptable State after the reload
oldStateAdaptable State before the reload
adaptableContextCustom application Context provided in AdaptableOptions.adaptableContext

Property Details

newState

Adaptable State after the reload

TypeScript
newState: AdaptablePersistentState;
Property Value

AdaptablePersistentState

oldState

Adaptable State before the reload

TypeScript
oldState: AdaptablePersistentState;
Property Value

AdaptablePersistentState

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any