AdaptableStateReloadedInfo
Object returned by the AdaptableStateReloaded event
TypeScript
export interface AdaptableStateReloadedInfo extendsExtends
Properties
| Property | Description |
|---|---|
| newState | Adaptable State after the reload |
| oldState | Adaptable State before the reload |
| adaptableContext | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
newState
Adaptable State after the reload
TypeScript
newState: AdaptablePersistentState;Property Value
oldState
Adaptable State before the reload
TypeScript
oldState: AdaptablePersistentState;Property Value
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any