Skip to main content
All docs
V25.1
  • IComboBox<TData, TValue>.DropDownTriggerMode Property

    Specify when the ComboBox should open its drop-down list.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [DefaultValue(DropDownTriggerMode.Input)]
    DropDownTriggerMode DropDownTriggerMode { get; set; }

    Property Value

    Type Default Description
    DropDownTriggerMode Input

    A DropDownTriggerMode enumeration value.

    Available values:

    Name Description
    Input

    The ComboBox opens its drop-down list when a user starts typing. If the AllowUserInput property is set to false, the ComboBox opens the drop-down list when a user clicks within in the input element.

    Click

    The ComboBox opens its drop-down list whenever a user focuses the editor with a mouse/pointer device or starts typing.

    Remarks

    Refer to the DropDownTriggerMode property description for more information and an example.

    See Also