AdaptableStateReloadedInfo

Object returned by the AdaptableStateReloaded event

TypeScript
export interface AdaptableStateReloadedInfo extends
Extends

BaseContext

Properties

PropertyTypeDescription
newStateAdaptablePersistentStateAdaptable State after the reload
oldStateAdaptablePersistentStateAdaptable State before the reload
adaptableContextanyCustom 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