ContainerOptions
Options for managing the different div elements required by AdapTable
export interfaceProperties
| Property | Description | Default |
|---|---|---|
| adaptableContainer | Div containing AdapTable; element Id, CSS Selector, HTMLElement, or function returning one of these | "adaptable" |
| agGridContainer | Div containing AG Grid instance; element Id, CSS Selector, HTMLElement, or function returning one of these. | "grid" |
| alertContainer | Div to display Alerts; elementId, CSS Selector, HTMLElement, or function returning one of these | undefined |
| modalContainer | Name of div where popups appear;element Id, CSS Selector, HTMLElement, or function returning one of these | undefined (centre of screen) |
| systemStatusContainer | Div to show System Status Messages; elementId, CSS Selector, HTMLElement, or function returning one of these | undefined |
| transposedViewContainer | Div to render a Transposed View; elementId, CSS Selector, HTMLElement, or function returning one of these | undefined (rendered in a draggable popup window) |
Property Details
adaptableContainer
Div containing AdapTable; element Id, CSS Selector, HTMLElement, or function returning one of these
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.
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
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
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
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
transposedViewContainer?: AdaptableContainerValue | ((context: ContainerContext) => AdaptableContainerValue);Default Value
undefined (rendered in a draggable popup window)
Property Value
AdaptableContainerValue| ((context:ContainerContext) =>AdaptableContainerValue)