I have a requirement of Month/Year selection in Angular and we are using Angular Material library.
I have included below code which is opening default view as Month, but on Month selection it is opening Day selection mode. Requirement is, once user select Month, it should open Year selection view.
<mat-form-field>
<input matInput [matDatepicker]="TuevFaellig" name="TuevFaellig" [(ngModel)]="object.TuevFaellig">
<mat-datepicker-toggle matSuffix [for]="TuevFaellig"></mat-datepicker-toggle>
<mat-datepicker **startView="year"**(yearSelected)="setMonthAndYearForTuevFaellig($event, TuevFaellig)" (monthSelected)="monthSelectedForTuevFaellig($event, TuevFaellig)" #TuevFaellig>
</mat-datepicker>
</mat-form-field>
Component
monthSelectedForTuevFaellig(normalizedMonthAndYear: Moment, datepicker: MatDatepicker<Moment>) {
datepicker.startView = 'multi-year';
}
setMonthAndYearForTuevFaellig(normalizedMonthAndYear: Moment, datepicker: MatDatepicker<Moment>) {
datepicker.close();
}
I thought, after Month selection, if we set startView property, it would open Year mode. but no luck with this.
First I want to open Month selection, and then Year selection.
Thanks in advance.!
Date Picker use like this good option
Do you need validate end date > start date please use this