Skip to main content
All docs
V24.1

IDropDownListEditorBase<TData, TValue>.ClearButtonDisplayMode Property

Specifies whether the editor displays the Clear button when it is not empty.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(DataEditorClearButtonDisplayMode.Never)]
DataEditorClearButtonDisplayMode ClearButtonDisplayMode { get; set; }

Property Value

Type Default Description
DataEditorClearButtonDisplayMode Never

A DataEditorClearButtonDisplayMode enumeration value.

Available values:

Name Description
Auto

The clear button is visible when an editor is not empty. This mode requires that the editor’s data type is nullable.

Never

The clear button is not visible.

Remarks

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

See Also