@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
41 lines (40 loc) • 1.03 kB
TypeScript
/**
* Options for managing the different div elements required by AdapTable
*/
export interface ContainerOptions {
/**
* Div containing AdapTable; string Id or HTMLElement
*
* @defaultValue "adaptable"
* @gridInfoItem
*/
adaptableContainer?: string | HTMLElement;
/**
* Div containing AG Grid instance; string Id or HTMLElement
*
* @defaultValue "grid"
* @gridInfoItem
*/
agGridContainer?: string | HTMLElement;
/**
* Name of div where popups appear
*
* @defaultValue undefined (centre of screen)
* @gridInfoItem
*/
modalContainer?: string | HTMLElement;
/**
* Div to show System Status messages; string Id or HTMLElement
*
* @defaultValue undefined
* @gridInfoItem
*/
systemStatusContainer?: string | HTMLElement;
/**
* Div to display Alert messages; string Id or HTMLElement
*
* @defaultValue undefined
* @gridInfoItem
*/
alertContainer?: string | HTMLElement;
}