danielmoncada / date-time-picker

Angular Date Time Picker (Responsive Design)
https://daniel-projects.firebaseapp.com/owlng/date-time-picker
MIT License
141 stars 61 forks source link

feature: initial support month-picker support #95

Closed igorlino closed 3 years ago

igorlino commented 3 years ago

https://github.com/danielmoncada/date-time-picker/issues/94

Via the property 'yearOnly'

<input [(ngModel)]="selectedMoments" [selectMode]="'range'"
       [owlDateTimeTrigger]="date_range_component" [owlDateTime]="date_range_component"
       style="width: 100%; color: cornflowerblue"
       id="daterange" matInput required>

<owl-date-time #date_range_component [startAt]="currentValue" startView="year" [yearOnly]="true" [endAt]="endValue"
(monthSelected)="startMonthHandler($event, selectedMoments)">
</owl-date-time>