Hello i'm developing an application with angular 8 in wich i have an input that contains only year number.
I have used mat-datepicker and want only to choose year.
<mat-form-field class="input-control">
<input matInput placeholder="{{'enter'|translate}}.." [formControl]="form.controls.openedAt"
[matDatepicker]="date" readonly>
<mat-datepicker-toggle matSuffix [for]="date"></mat-datepicker-toggle>
<mat-datepicker #date startView="multi-year"></mat-datepicker>
</mat-form-field>
this code shows year view first, but when i choose the year, the month view will be opened, then days view.
So how can i select only year, or show only year view on mat-datepicker?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…