I am using ion2-calendar version 3.5.0
without implementing the monthChange event it is working fine, but when I add like this:
<ion-calendar [options]="cal_options" [(ngModel)]="selectedDates" (monthChange)="onMonthChanged($event)" (change)="onChange($event)">
</ion-calendar>
On month change function:
onMonthChanged(month) {
this.selectedMonth = month.newMonth.months;
}
When I switch month, it keeps displaying the current month
Images attached: enter image description here