Boomi Flow Runtime Reference Documentation
    Preparing search index...

    Interface EditableCustomCellElementProps<TRow>

    interface EditableCustomCellElementProps<TRow> {
        cellValue: string;
        columnKey: keyof TRow;
        onClose: (commitChanges?: boolean, shouldFocusCell?: boolean) => void;
        onRowChange: (row: TRow, commitChanges?: boolean) => void;
        row: TRow;
    }

    Type Parameters

    • TRow

    Hierarchy (View Summary)

    Index

    Properties

    cellValue: string
    columnKey: keyof TRow
    onClose: (commitChanges?: boolean, shouldFocusCell?: boolean) => void
    onRowChange: (row: TRow, commitChanges?: boolean) => void
    row: TRow