Skip to main content

angular bootstrap - Datepicker default visible year month

app.component.ts

import { Component } from '@angular/core';
import { 
  NgbCalendar, NgbDatepicker, NgbDateStruct 
} from '@ng-bootstrap/ng-bootstrap';

@Component({
  selector: 'app-root',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css']
})


export class AppComponent {
  model:NgbDateStruct;

  constructor(private calendar: NgbCalendar) {
    // set date picker default selected date
    this.model = {year:2015,month:7,day:14};
   }
}
app.component.html

<h4 style="padding-top:25px; padding-bottom:25px;">
  Angular Bootstrap - Datepicker default visible year month
</h4>

<h5><b>Selected Date:</b></h5>
<h5>{{ model | json}}</h5>
<br/>

<ngb-datepicker 
  #datePicker 
  [(ngModel)]="model"
  [startDate]="{year:2015,month:7}">
</ngb-datepicker>
More Angular tutorials