AdaptableStateReloadedInfo
Object returned by the AdaptableStateReloaded event
TypeScript
export interface AdaptableStateReloadedInfo extendsExtends
Properties
| Property | Type | Description |
|---|---|---|
| newState | AdaptablePersistentState | Adaptable State after the reload |
| oldState | AdaptablePersistentState | Adaptable State before the reload |
| adaptableContext | any | 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