New to Kendo UI for Angular? Start a free 30-day trial

Calendar Options

The DateTimePicker enables you to configure its popup Calendar.

Calendar Types

The DateTimePicker allows you to switch between the different Calendar layouts by using the calendarType input property.

By default, the Calendar type is set to infinite.

The available calendarType values are:

  • infinite (Default)
  • classic
Example
View Source
Change Theme:

Displaying Other Month Days

Based on the calendarType option the other month days are either displayed or hidden by default:

  • infinite—Hides the other month days.
  • classic—Shows the other month days.

To change the default behavior set the showOtherMonthDays property.

Example
View Source
Change Theme:

Navigation Animation

The DateTimePicker allows you to enable the navigation animation in the Classic Calendar by using the animateCalendarNavigation input property.

By default, the navigation animation is disabled.

Example
View Source
Change Theme:

Focused Dates

The Calendar always displays a focused date and, by default, the focused date is today's date. To change the focused date, use the focusedDate property by setting it to a specific Date value. The Date value has to be a valid JavaScript Date object.

Example
View Source
Change Theme:

Week Number Column

In the Calendar, you can render a column which displays the number of the weeks within the current month view. To show the week number column, set the weekNumber property.

@Component({
    selector: 'my-app',
    template: `
       <kendo-datetimepicker
            [weekNumber]="true"
        >
        </kendo-datetimepicker>
    `
})
export class AppComponent { }