【发布时间】:2019-12-25 10:30:32
【问题描述】:
我正在使用带有自定义导航的 Material Calendar 组件,该导航显示您在日历中选择日期后的接下来 5 天。
当您在自定义元素中选择一个日期时,它会使用新选择的日期更新日历,但如果传入日期在下个月,我希望日历自动切换到该月。
HTML:
<mat-calendar [selected]="selectedDate" (selectedChange)="onDateSelected($event)"
[minDate]="minDate" [dateClass]="dateClass"></mat-calendar>
TS:
@Input() set incomingDate(d: Date) {
this.selectedDate = d; // sets the incoming date on mat-calendar
this.dateClass(d); // highlights the next 5 days in the mat-calendar
this.calendar.updateTodaysDate(); // re-renders calendar to see changes
}
有什么方法可以绑定到元素来解决这个问题吗?谢谢!
【问题讨论】:
标签: javascript angular typescript angular-material