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

DxTimeEdit<T>.ClearButtonDisplayMode Property

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

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v20.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public DataEditorClearButtonDisplayMode ClearButtonDisplayMode { get; set; }

Property Value

Type Description
DataEditorClearButtonDisplayMode

A DataEditorClearButtonDisplayMode enumeration value.

Available values:

Name Description
Auto

The Clear button is displayed when an editor is not empty and is not in the read-only state. This mode requires that the editor’s data type is nullable.

Never

The Clear button is not displayed.

Remarks

The Clear button clears the editor’s value (sets it to null). To display this button in the editor when it has a value, set the ClearButtonDisplayMode property to DataEditorClearButtonDisplayMode.Auto. In this mode, the editor’s data type should be nullable.

Use the NullText property to specify the prompt text when the editor’s value is null.

<DxTimeEdit @bind-Time="@TimeValue"
            ClearButtonDisplayMode="DataEditorClearButtonDisplayMode.Auto"
            NullText="Select time...">
</DxTimeEdit>

@code {
    TimeSpan? TimeValue { get; set; } = DateTime.Now.TimeOfDay;
}

Time Edit ClearButton

Run Demo: Time Edit - Null Time Values and Placeholder

See Also