sorry, I was referring to the DayView. We don't expose any methods to get the "Actual Start" or "Actual Finish" of the month view, but the functions used to make these calculations are exposed
to get the first day displayed:
MonthViewDateUtils.firstDateShownInAMonthView
to get the total number of days:
MonthViewDateUtils.monthViewRequiredRows * 7
It could work something like this:
- user requests date change for MonthView (maybe via a date picker)
- get the first date displayed in the month view, using above function
- get the number of days displayed in the month view, using above function
- make ajax request to server for the date range
- receive response, populate calendar (you may need to clear previous events)
- finally update the MonthView's date, per the users request
Hopefully this can serve as a workaround until something is built into the official API