Skip to main content

BootstrapCalendar Class

Represents the calendar control.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v24.2.dll

NuGet Package: DevExpress.Web.Bootstrap

#Declaration

[DXClientDocumentationProviderWeb("BootstrapCalendar")]
[ToolboxTabName("DX.24.2: Bootstrap Controls")]
public class BootstrapCalendar :
    ASPxCalendar,
    ISimpleRenderControl,
    IBootstrapEditorCssClassesOwner

#Remarks

Note

The BootstrapCalendar control provides you with comprehensive client-side functionality implemented using JavaScript code:

The control’s client-side API is enabled if the ASPxEditBase.EnableClientSideAPI property is set to true, or the ASPxEditBase.ClientInstanceName property is defined, or any client event is handled.

#Example

This example demonstrates the Calendar control with default settings.

  • Initialize a new instance of the BootstrapCalendar class.
  • Use the ASPxCalendar.SelectedDate property to specify the date selected by default.

The image below shows the result:

BootstrapCalendar_Overview

<dx:BootstrapCalendar runat="server" SelectedDate="1.1.2017">
</dx:BootstrapCalendar>
See Also