Read the statement by Michael Teeuw here.
MMM-CalendarExt3Agenda - Can I Make it show more events?
-
@Kelemvor I don’t use it that long anymore, but I went back in my backups and found this config:
{ module: "MMM-CalendarExt3Agenda", // https://github.com/MMRIZE/MMM-CalendarExt3Agenda position: "top_left", config: { showMiniMonthCalendar: false, instanceId: "basicCalendar", firstDayOfWeek: 0, startDayIndex: 0, endDayIndex: 99, minimalDaysOfNewYear: 1, animationSpeed: 0, useSymbol: false, useWeather: false, waitFetch: 5000, eventTransformer: (ev) => { if (ev.title.search("⚾") > -1) { ev.title = ev.title.replace("⚾️ ",""); } if (ev.title.search("Bowling") > -1) { ev.color = 'yellow'; } return ev }, }, },
{ module: "calendar", // Built in //position: "top_right", config: { broadcastEvents: true, broadcastPastEvents: true, fetchInterval: 30000, maximumEntries: 99, calendars: [ ```
-
@Kelemvor
Maybe your event provider (default calendar) may broadcast limited number of events.- Check
maximumEntries
,maximumNumberOfDays
of default Calendar module.
And also, To get enough range of days for events;
- Check
endDayIndex
of CX3A module.
To extend physical height of area;
- override
.CX3A .agenda { max-height : 600px; }
to what you want. (If you setnone
, It might be extended automatically, I think, not tested…)
- Check
-
@Kelemvor can you look at the messages from where you do npm start…
if using pm2 to autostart mm, then use the command
pm2 logs --lines=50
50 can be any number bigger than 15
you are looking for the calendar module to say broadcast xxx events
-
@sdetweil Hi,
I ran it via npm start and got this. There are always hundreds of events since it’s my, my wife’s, my daughter’s, etc calendars.
It still looks like it did in my above pictures where it only goes partway own the screen.
-
@Kelemvor
To make things simpler, Let’s clear the condition;- What is your expectation?
- Are there
missing
events which have to be shown but not? For example, there had to be 3 events on today but only 2 events shown?- on which day it happens? everyday? or some specific day?
- on which calendar does it happen? randomly? or some specific calendar?
- Or any suspicious symptoms or evidence of those missed events?
- Are you suspecting
hidden
(not missing) events or days at the end(bottom) of the module’s view?- You expect 10 days but only 7 days are shown…?
- Are there
- What is your expectation?