I seem to be having an issue with the month view and hope someone here might have a solution.
Currently I have 7 calendars setup and am using daily view in the top left with month view in the fullscreen_below section.
The daily view displays all events just fine when setting the slotCount to 2 or even 10 (although I cant figure out how to not overlap the month view) and it correctly displays all calendar events from all 7 calendars. All the calendars are from gmail and pulled from each gmail account using the link under “secret address in iCal format”. I have omitted that part in the code I shared below.
The month view is only displaying a few events for the entire month, Dec 29 through Jan 7 is populated and it doesn’t have all the events listed for January 7th, the rest of the days in the month are completely empty. Last month (December) was displaying all events just fine. Is there something I am missing?
I have recently update MM and MMM-CalendarExt2. The updates showed that they were completed successfully.
module: "MMM-CalendarExt2",
config:
{
rotateInterval: 5 * 60 * 1000,
calendars: [
{ // Calendar 1
name: "Calendar One",
className: "Cal1",
url: '<omitted>',
},
{ // Calendar 2
name: "Calendar Two",
className: "Cal2",
url: '<omitted>',
},
{ // Calendar 3
name: "Calendar Three",
className: "Cal3",
url: '<omitted>',
},
{ // Calendar 4
name: "Calendar Four",
className: "Cal4",
url: '<omitted>',
},
{ // Calendar 5
name: "Calendar Five",
className: "Cal5",
url: '<omitted>',
},
{ // Calendar 6
name: "Calendar Six",
className: "Cal6",
url: '<omitted>',
},
{ // Calendar 7
name: "Calendar Seven",
className: "Cal7",
url: '<omitted>',
},
],
views: [
{
name: "MONTHVIEW",
mode: "month",
position: "fullscreen_below",
showWeekends: false,
timeFormat: "h:mm A",
},
{
name: "DAILYVIEW",
mode: "daily",
title: "Upcoming Events",
slotCount: 10,
timeFormat: "h:mm A",
hideOverflow: false,
filterPassedEvent: true,
},
],
scenes: [
{
name: "DEFAULT",
},
],
}