CustomRenderContext

Context provided for any custom rendering

TypeScript
export interface CustomRenderContext extends
Extends

BaseContext

Properties

PropertyTypeDescription
elementHTMLDivElementContainer Div Element
phase'onMount' | 'onDestroy'Phase of DOM Element lifecycle
adaptableContextanyCustom 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