CustomRenderContext
Context provided for any custom rendering
TypeScript
export interface CustomRenderContext extendsExtends
Properties
| Property | Description |
|---|---|
| element | Container Div Element |
| phase | Phase of DOM Element lifecycle |
| adaptableContext | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
element
Container Div Element
TypeScript
element: HTMLDivElement;Property Value
HTMLDivElement
phase
Phase of DOM Element lifecycle
TypeScript
phase: 'onMount' | 'onDestroy';Property Value
'onMount' | 'onDestroy'
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any