apex-grid
    Preparing search index...

    Interface BaseApexCellContext<T, K>

    Context object for the row cell template callback.

    interface BaseApexCellContext<T extends object, K extends Keys<T> = Keys<T>> {
        column: ColumnConfiguration<T, K>;
        parent: ApexGridCell<T>;
        row: ApexGridRow<T>;
        value: PropertyType<T, K>;
    }

    Type Parameters

    Index

    Properties

    Properties

    The current configuration for the column.

    parent: ApexGridCell<T>

    The cell element parent of the template.

    row: ApexGridRow<T>

    The row element containing the cell.

    value: PropertyType<T, K>

    The value from the data source for this cell.