Boomi Flow Runtime Reference Documentation
    Preparing search index...

    Interface EditableCustomCellElementProps<TRow, TSummaryRow>

    interface EditableCustomCellElementProps<TRow, TSummaryRow = unknown> {
        authenticationToken: string | null;
        cellContentValue: string | null;
        cellObjectData: ObjectData[] | null;
        cellValue: string;
        column: CalculatedColumn<TRow, TSummaryRow>;
        columnKey: keyof TRow;
        contentType: ContentType;
        currentMapElementId: string;
        element: PageElement;
        execute: Execute;
        featureFlags: Record<string, boolean>;
        hasSubmitted: boolean;
        objectData: ObjectData[];
        onClose: (commitChanges?: boolean, shouldFocusCell?: boolean) => void;
        onRowChange: (row: TRow, commitChanges?: boolean) => void;
        outcomes: Outcome[] | null;
        row: TRow;
        rowIdx: number;
        selectItems: SelectItems;
        setErrorMessage: (errorMessage: string | null) => void;
        stateId: string;
        tenantId: string;
        typeElementPropertyId: string;
        updateElement: UpdateElement;
        updateObjectData: UpdateObjectData;
    }

    Type Parameters

    • TRow
    • TSummaryRow = unknown

    Hierarchy (View Summary)

    Index

    Properties

    authenticationToken: string | null
    cellContentValue: string | null
    cellObjectData: ObjectData[] | null
    cellValue: string
    column: CalculatedColumn<TRow, TSummaryRow>
    columnKey: keyof TRow
    contentType: ContentType
    currentMapElementId: string
    element: PageElement
    execute: Execute
    featureFlags: Record<string, boolean>
    hasSubmitted: boolean
    objectData: ObjectData[]
    onClose: (commitChanges?: boolean, shouldFocusCell?: boolean) => void
    onRowChange: (row: TRow, commitChanges?: boolean) => void
    outcomes: Outcome[] | null
    row: TRow
    rowIdx: number
    selectItems: SelectItems
    setErrorMessage: (errorMessage: string | null) => void
    stateId: string
    tenantId: string
    typeElementPropertyId: string
    updateElement: UpdateElement
    updateObjectData: UpdateObjectData