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

    Interface RangeSearchField

    interface RangeSearchField {
        $CreationOptions?: RangeSearchFieldCreationOptions;
        $ID: string;
        $Type: "Pages$RangeSearchField";
        caption: Text;
        customDateFormat: string;
        defaultValue: string;
        includeLower: boolean;
        includeUpper: boolean;
        lowerBoundRef: null | AttributeRef;
        name: string;
        placeholder: Text;
        type: SearchFieldType;
        upperBoundRef: null | AttributeRef;
        delete(): void;
        getContainer(): ControlBar;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "Pages$RangeSearchField"

    The type of the element.

    caption: Text
    customDateFormat: string
    defaultValue: string
    includeLower: boolean
    includeUpper: boolean
    lowerBoundRef: null | AttributeRef
    name: string
    placeholder: Text
    upperBoundRef: null | AttributeRef

    Methods