Date in other months

5 Jan 20181 minute to read

DateTimePicker calendar can display the dates in other months at the start or end of the current month. To enable or disable the display of other month dates in the current month, you can use the property called showOtherMonths. By setting this property value as “true” you can display the dates in other months at the start or end of the current month. By default the value of this property is “true”.

Consider you are going to calculate the monthly report of your company’s employee attendance. To avoid the mistake of selecting other month dates while calculating current month report, you can disable showing other month dates in the current month. You can achieve this requirement by setting showOtherMonths value as “false”.

Add the following code in your HTML page.

  • HTML
  • <div align="center">
        <input type="text" id="dateTime" ej-datetimepicker width='200' [showOtherMonths]="months" [(ngModel)]="value">
        </div>
  • HTML
  • import { Component } from '@angular/core';
    @Component({
        selector: 'ej-app',
        templateUrl: './default.component.html'
    })
    export class DefaultComponent {
        value: any;
        months: boolean;
        constructor() {
            this.value = Date();
            this.months = false;
        }
    }