Member Junction
    Preparing search index...

    Context provided to custom cell templates

    interface GridCellTemplateContext {
        column: GridColumnConfig;
        isEditing: boolean;
        row: Record<string, unknown>;
        rowIndex: number;
        value: unknown;
    }
    Index

    Properties

    Column configuration

    isEditing: boolean

    Whether the cell is currently being edited

    row: Record<string, unknown>

    The row data (entity)

    rowIndex: number

    Row index in the current view

    value: unknown

    The cell value