Boomi Flow Runtime Reference Documentation
    Preparing search index...

    Interface CustomCellElementProps<TRow>

    interface CustomCellElementProps<TRow> {
        authenticationToken: string | null;
        cellContentValue: string | null;
        cellObjectData: ObjectData[] | null;
        cellValue: string;
        columnKey: keyof TRow;
        currentMapElementId: string;
        element: PageElement;
        execute: Execute;
        featureFlags: Record<string, boolean>;
        hasSubmitted: boolean;
        outcomes: Outcome[] | null;
        rowIdx: number;
        selectItems: SelectItems;
        setErrorMessage: (errorMessage: string | null) => void;
        stateId: string;
        tenantId: string;
        updateElement: UpdateElement;
        updateObjectData: UpdateObjectData;
    }

    Type Parameters

    • TRow

    Hierarchy (View Summary)

    Index

    Properties

    authenticationToken: string | null
    cellContentValue: string | null
    cellObjectData: ObjectData[] | null
    cellValue: string
    columnKey: keyof TRow
    currentMapElementId: string
    element: PageElement
    execute: Execute
    featureFlags: Record<string, boolean>
    hasSubmitted: boolean
    outcomes: Outcome[] | null
    rowIdx: number
    selectItems: SelectItems
    setErrorMessage: (errorMessage: string | null) => void
    stateId: string
    tenantId: string
    updateElement: UpdateElement
    updateObjectData: UpdateObjectData