interface DataGrid {
    $CreationOptions?: DataGridCreationOptions;
    $ID: string;
    $Type: "Pages$DataGrid";
    appearance: Appearance;
    caption: ClientTemplate;
    columns: GridColumn[];
    conditionalVisibilitySettings: null | ConditionalVisibilitySettings;
    controlBar: GridControlBar;
    dataSource: DataSource;
    defaultButtonTrigger: ClickTypeType;
    isControlBarVisible: boolean;
    name: string;
    numberOfRows: number;
    refreshTime: number;
    selectFirst: boolean;
    selectionMode: GridSelectionMode;
    showEmptyRows: boolean;
    showPagingBar: ShowPagingBarType;
    tabIndex: number;
    tooltipPage: null | string;
    widthUnit: UnitEnum;
    addGridColumn(options: GridColumnCreationOptions): Promise<GridColumn>;
    getGridColumn(name: string): GridColumn;
}

Hierarchy (view full)

Properties

$CreationOptions?: DataGridCreationOptions

Options to pass during the element creation

$ID: string

The unique id of the element.

$Type

The type of the element.

appearance: Appearance
columns: GridColumn[]
conditionalVisibilitySettings: null | ConditionalVisibilitySettings
controlBar: GridControlBar
dataSource: DataSource
defaultButtonTrigger: ClickTypeType
isControlBarVisible: boolean
name: string
numberOfRows: number
refreshTime: number
selectFirst: boolean
selectionMode: GridSelectionMode
showEmptyRows: boolean
showPagingBar: ShowPagingBarType
tabIndex: number
tooltipPage: null | string
widthUnit: UnitEnum

Methods