diff --git a/src/calendar-input/calendar-input.tsx b/src/calendar-input/calendar-input.tsx index bbd6b16fdf..ecf70ebf59 100644 --- a/src/calendar-input/calendar-input.tsx +++ b/src/calendar-input/calendar-input.tsx @@ -476,6 +476,10 @@ export class CalendarInput extends React.Component { this.setState({ month, }); + + if (this.props.calendar && this.props.calendar.onMonthChange) { + this.props.calendar.onMonthChange(); + } }; private handleCalendarFocus = (event) => {