ContainerOptions

Options for managing the different div elements required by AdapTable

TypeScript
export interface

Properties

PropertyTypeDescriptionDefault
adaptableContainerAdaptableContainerValue| ((context:InitContainerContext) =>AdaptableContainerValue)Div containing AdapTable; element Id, CSS Selector, HTMLElement, or function returning one of these"adaptable"
agGridContainerAdaptableContainerValue| ((context:InitContainerContext) =>AdaptableContainerValue)Div containing AG Grid instance; element Id, CSS Selector, HTMLElement, or function returning one of these."grid"
alertContainerAdaptableContainerValue| ((context:ContainerContext) =>AdaptableContainerValue)Div to display Alerts; elementId, CSS Selector, HTMLElement, or function returning one of theseundefined
modalContainerAdaptableContainerValue| ((context:ContainerContext) =>AdaptableContainerValue)Name of div where popups appear;element Id, CSS Selector, HTMLElement, or function returning one of theseundefined (centre of screen)
systemStatusContainerAdaptableContainerValue| ((context:ContainerContext) =>AdaptableContainerValue)Div to show System Status Messages; elementId, CSS Selector, HTMLElement, or function returning one of theseundefined
transposedViewContainerAdaptableContainerValue| ((context:ContainerContext) =>AdaptableContainerValue)Div 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)