apex-grid
    Preparing search index...

    Interface ApexCellValueChangedEvent<T>

    Event payload for the cellValueChanged event.

    interface ApexCellValueChangedEvent<T extends object> {
        data: T;
        key: keyof T;
        rowIndex: number;
        value: unknown;
    }

    Type Parameters

    • T extends object
    Index

    Properties

    Properties

    data: T

    The data record after the change (a live reference to the row in ApexGrid.data).

    key: keyof T

    The column key of the edited cell.

    rowIndex: number

    The view-relative row index after the change.

    value: unknown

    The applied value.