Read the statement by Michael Teeuw here.
MMM-CalendarExt3 always displays previous week
-
Hi,
I’m using MMM-CalendarExt3 to post our family calendar. I would like to display the current week along with the next 2 weeks. Whenever I set mode to week, the previous week always displays first, no matter what I set the week index to. Is there a setting I’m missing that is over riding this? Thanks for the help. -
@sdetweil said in MMM-CalendarExt3 always displays previous week:
weekIndex defaults to -1 (last week)
sigh, thank you!
-
@mrsmith81 can you show the ext3 module config
-
While I’m not OP, I’m having the same issue. My config is below. Today is 1/31, but with the config as is, when I run pm2 start MM, it displays last week (Jan 19th thru the 25th).
{
module: “MMM-CalendarExt3”,
position: “top_bar”,
title: “”,
config: {
mode: “week”,
instanceId: “WeekCalendar”,
weeksInView:1,
maxEventLines: 6,
firstDayOfWeek: 0,
calendarSet: [],
useWeather: false,
fontSize: “22px”,
eventHeight: “26px”,
}
}, -
-
@mrsmith81 MagicMirror is case sensitive,
weekIndex is not the same as weekindex
-
@sdetweil said in MMM-CalendarExt3 always displays previous week:
weekIndex defaults to -1 (last week)
sigh, thank you!
-
@Xsoldier2000 so you need to put it into the config as 0
weekIndex :0, -
@sdetweil Thank you! I was out of town so was just home and able to get into the coffee and this is exactly the problem.
-
@mrsmith81 and the fix
-