Skip to main content
A newer version of this page is available. .

DxComboBox<TData, TValue>.AllowUserInput Property

Specifies whether users are allowed to input values in a ComboBox editor.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(false)]
[Parameter]
public bool AllowUserInput { get; set; }

Property Value

Type Default Description
Boolean **false**

true if users can type new values or false if users can only select ComboBox values from the drop-down window.

Remarks

<DxComboBox AllowUserInput="true" Data="@Data" @bind-Value="@Value"></DxComboBox>

Run Demo: ComboBox - Allow Input

To access an editor’s value when AllowUserInput is set to true, use the Text property.

See Also