Boomi Flow Runtime Reference Documentation
    Preparing search index...

    Interface CustomCellElementProps<TRow>

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

    Type Parameters

    • TRow
    Index

    Properties

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