PowerKeys Scripting API
    Preparing search index...

    Interface DataGridColumn

    Column descriptor for AddDataGrid.

    interface DataGridColumn {
        key: string;
        title: string;
        type: DataGridColumnType;
        buttonText?: string;
    }
    Index
    key: string

    Unique key used to read row data via rowData[key].

    title: string

    Display name shown in the column header.

    Rendering type: checkbox for editable boolean cells, text for read-only text, button for action buttons.

    buttonText?: string

    Button label text. Only used when type is button.