Arul Rozario
Arul Rozario

Reputation: 83

Angular 4 Material Datepicker

How to make angular 5 official date picker pick only month and year and only year?

here is the code...

<mat-form-field>
  <input matInput [matDatepicker]="picker" placeholder="Choose a date">
  <mat-datepicker-toggle matSuffix [for]="picker"></mat-datepicker-toggle>
  <mat-datepicker #picker></mat-datepicker>
</mat-form-field>

Upvotes: 1

Views: 307

Answers (1)

Q ez
Q ez

Reputation: 62

As the name suggests, the DatePicker is built to pick dates.

There isn't a way you can only use it to pick only month and/or year.

Upvotes: 2

Related Questions