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

    Type Alias Selector<T>

    The Selector configures the dialog's behaviour and content.

    type Selector<T extends ElementQuery> = {
        allowNone?: boolean;
        query?: T;
        selectedElementId?: string;
    }

    Type Parameters

    Index

    Properties

    allowNone?: boolean

    AllowNone indicates whether to allow the user to explicitly select "none"(undefined) as a result.

    query?: T

    Query acts as a filter to narrow down the list of elements shown in the selector dialog. Optional.

    selectedElementId?: string

    The id of the currently selected element. Optional.