Options for managing the different div elements required by AdapTable

TypeScript
export interface

Properties

PropertyDescriptionDefault
adaptableContainerDiv containing AdapTable; element Id, CSS Selector, HTMLElement, or function returning one of these"adaptable"
agGridContainerDiv containing AG Grid instance; element Id, CSS Selector, HTMLElement, or function returning one of these."grid"
alertContainerDiv to display Alerts; elementId, CSS Selector, HTMLElement, or function returning one of theseundefined
modalContainerName of div where popups appear;element Id, CSS Selector, HTMLElement, or function returning one of theseundefined (centre of screen)
systemStatusContainerDiv to show System Status Messages; elementId, CSS Selector, HTMLElement, or function returning one of theseundefined
transposedViewContainerDiv to render a Transposed View; elementId, CSS Selector, HTMLElement, or function returning one of theseundefined (rendered in a draggable popup window)

Property Details

adaptableContainer

Div containing AdapTable; element Id, CSS Selector, HTMLElement, or function returning one of these

TypeScript
adaptableContainer?: AdaptableContainerValue | ((context: InitContainerContext) => AdaptableContainerValue);
Default Value

"adaptable"

Property Value

AdaptableContainerValue| ((context:InitContainerContext) =>AdaptableContainerValue)

agGridContainer

Div containing AG Grid instance; element Id, CSS Selector, HTMLElement, or function returning one of these.

TypeScript
agGridContainer?: AdaptableContainerValue | ((context: InitContainerContext) => AdaptableContainerValue);
Default Value

"grid"

Property Value

AdaptableContainerValue| ((context:InitContainerContext) =>AdaptableContainerValue)

alertContainer

Div to display Alerts; elementId, CSS Selector, HTMLElement, or function returning one of these

TypeScript
alertContainer?: AdaptableContainerValue | ((context: ContainerContext) => AdaptableContainerValue);
Default Value

undefined

Property Value

AdaptableContainerValue| ((context:ContainerContext) =>AdaptableContainerValue)

modalContainer

Name of div where popups appear;element Id, CSS Selector, HTMLElement, or function returning one of these

TypeScript
modalContainer?: AdaptableContainerValue | ((context: ContainerContext) => AdaptableContainerValue);
Default Value

undefined (centre of screen)

Property Value

AdaptableContainerValue| ((context:ContainerContext) =>AdaptableContainerValue)

systemStatusContainer

Div to show System Status Messages; elementId, CSS Selector, HTMLElement, or function returning one of these

TypeScript
systemStatusContainer?: AdaptableContainerValue | ((context: ContainerContext) => AdaptableContainerValue);
Default Value

undefined

Property Value

AdaptableContainerValue| ((context:ContainerContext) =>AdaptableContainerValue)

transposedViewContainer

Div to render a Transposed View; elementId, CSS Selector, HTMLElement, or function returning one of these

TypeScript
transposedViewContainer?: AdaptableContainerValue | ((context: ContainerContext) => AdaptableContainerValue);
Default Value

undefined (rendered in a draggable popup window)

Property Value

AdaptableContainerValue| ((context:ContainerContext) =>AdaptableContainerValue)