You can change the date visible in the Scheduler component programmatically using the API.
JavaScript Scheduler
Use the update() method and specify the new startDate and days values:
dp.update({
startDate: DayPilot.Date.today().firstDayOfMonth(),
days: DayPilot.Date.today().daysInMonth()
});
DayPilot