@mendix/extensions-api - v0.12.0
    Preparing search index...

    Interface WidgetValue

    An element is part of a Mendix model and all elements together form the logic of the model. Elements may contain other elements. An element always has a container element, which is its parent. The root of an element tree is always a unit.

    interface WidgetValue {
        $CreationOptions?: unknown;
        $ID: string;
        $Type: "CustomWidgets$WidgetValue";
        $UnitID?: string;
        action: ClientAction;
        attributeRef: AttributeRef | null;
        dataSource: DataSource | null;
        entityRef: EntityRef | null;
        expression: string | null;
        icon: Icon | null;
        image: string | null;
        microflow: string | null;
        nanoflow: string | null;
        objects: WidgetObject[];
        page: string | null;
        primitiveValue: string;
        selection: CustomWidgetSelectionType;
        sourceVariable: PageVariable | null;
        textTemplate: ClientTemplate | null;
        translatableValue: Text | null;
        type: string;
        widgets: Pages.Widget[];
        xPathConstraint: string | null;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: unknown

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "CustomWidgets$WidgetValue"

    The type of the element.

    $UnitID?: string
    action: ClientAction
    attributeRef: AttributeRef | null
    dataSource: DataSource | null
    entityRef: EntityRef | null
    expression: string | null
    icon: Icon | null
    image: string | null
    microflow: string | null
    nanoflow: string | null
    objects: WidgetObject[]
    page: string | null
    primitiveValue: string
    sourceVariable: PageVariable | null
    textTemplate: ClientTemplate | null
    translatableValue: Text | null
    type: string
    widgets: Pages.Widget[]
    xPathConstraint: string | null