Skip to main content

DxCalendar<T>.ShowClearButton Property

Specifies whether the Clear button is displayed in the calendar’s footer.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public bool ShowClearButton { get; set; }

Property Value

Type Description
Boolean

true if the button is visible; otherwise, false.

Remarks

The Clear button drops the selection within the calendar. To hide this button, set the ShowClearButton property to false.

<DxCalendar T="DateTime" ShowClearButton="false"></DxCalendar>

Calendar Hide Clear Button

See Also