Boomi Flow Runtime Reference Documentation
    Preparing search index...

    Interface EditableCustomCellElementProps<TRow, TSummaryRow>

    interface EditableCustomCellElementProps<TRow, TSummaryRow = unknown> {
        cellContentValue: string | null;
        cellObjectData: ObjectData[] | null;
        cellValue: string;
        column: CalculatedColumn<TRow, TSummaryRow>;
        columnKey: keyof TRow;
        contentType: ContentType;
        objectData: ObjectData[];
        onClose: (commitChanges?: boolean, shouldFocusCell?: boolean) => void;
        onRowChange: (row: TRow, commitChanges?: boolean) => void;
        row: TRow;
        rowIdx: number;
        typeElementPropertyId: string;
    }

    Type Parameters

    • TRow
    • TSummaryRow = unknown

    Hierarchy (View Summary)

    Index

    Properties

    cellContentValue: string | null
    cellObjectData: ObjectData[] | null
    cellValue: string
    column: CalculatedColumn<TRow, TSummaryRow>
    columnKey: keyof TRow
    contentType: ContentType
    objectData: ObjectData[]
    onClose: (commitChanges?: boolean, shouldFocusCell?: boolean) => void
    onRowChange: (row: TRow, commitChanges?: boolean) => void
    row: TRow
    rowIdx: number
    typeElementPropertyId: string