Boomi Flow Runtime Reference Documentation
    Preparing search index...

    Interface Component

    A Component provided by the API.

    interface Component {
        attributes: null | Attributes;
        className: null | string;
        columns: null | Column[];
        componentScriptURL: null | string;
        componentStyleSheetURL: null | string;
        content: null | string;
        contentType: null | ContentType;
        contentValue: null | string;
        developerName: string;
        fileDataRequest: null | FileDataRequest;
        hasEvents: boolean;
        height: number;
        helpInfo: null | string;
        hintValue: null | string;
        id: string;
        imageUri: null | string;
        isEditable: boolean;
        isEnabled: boolean;
        isMultiSelect: boolean;
        isRequired: boolean;
        isSearchable: boolean;
        isSearchableDisplayColumns: boolean;
        isSearchTermPersisted: boolean;
        isValid: boolean;
        isVisible: boolean;
        label: null | string;
        maxSize: number;
        objectData: null | ObjectData[];
        objectDataRequest: null | ObjectDataRequest;
        order: number;
        outcomes: null | Outcome[];
        pageContainerId: string;
        selectedItems?: ObjectData[];
        size: number;
        tags: null | Tag[];
        type: string;
        validationMessage: null | string;
        validations: null | Validation[];
        width: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    attributes: null | Attributes
    className: null | string
    columns: null | Column[]
    componentScriptURL: null | string
    componentStyleSheetURL: null | string
    content: null | string

    HTML content

    contentType: null | ContentType
    contentValue: null | string

    Non-HTML content

    developerName: string
    fileDataRequest: null | FileDataRequest
    hasEvents: boolean
    height: number
    helpInfo: null | string
    hintValue: null | string
    id: string
    imageUri: null | string

    Uri of image used in image component

    isEditable: boolean
    isEnabled: boolean
    isMultiSelect: boolean
    isRequired: boolean
    isSearchable: boolean
    isSearchableDisplayColumns: boolean
    isSearchTermPersisted: boolean
    isValid: boolean
    isVisible: boolean
    label: null | string
    maxSize: number
    objectData: null | ObjectData[]

    List of associated object data

    objectDataRequest: null | ObjectDataRequest
    order: number

    Order within its sibling elements

    outcomes: null | Outcome[]
    pageContainerId: string

    ID of the parent container

    selectedItems?: ObjectData[]

    Stores the component's selected items - Added in the client

    size: number
    tags: null | Tag[]
    type: string
    validationMessage: null | string
    validations: null | Validation[]
    width: number