I'm using Daypilot Day, Month, and Week view. I added today's button for all 3 views. When I click on the today button for Day and week, it's working fine but when I click on today for the month view, it's not working.
Below is my code.
currentDate(date: DayPilot.Date): void {
this.configDay.startDate = date;
this.configWeek.startDate = date;
let dt = new DayPilot.Date(this.configWeek.startDate || this.configDay.startDate || this.configMonth.startDate);
this.dateString = dt.toString("MMMM d, yyyy")
}