Read the statement by Michael Teeuw here.
MMM-CalendarExt3 not showing events on calendar, but does on list after 2.30 update
-
@tke499 calendar is broadcasting, so that’s not it
-
Generally,

This message is just an warning can be ignored.
However, in practice, stopping at that point usually corresponds to the following cases:-
(Most common case): The CX3 module has not been properly installed. In most situations, this happens because the
CX3_Sharedlibrary is not correctly installed. To resolve this, navigate to the CX3 directory, rungit pull, and then executenpm install. This resolves most issues. If it doesn’t, simply delete the entire CX3 directory and reinstall it. It only takes about 15 seconds. -
In very rare cases, other modules may cause errors during DOM creation, which can have an impact. However, this is highly uncommon, so the cause is typically case 1.
-
-
@MMRIZE I have re-installed CX3 3 times now. Still having the same issue
-
@MMRIZE I only have 2 other modules installed, one for nest and the other for traffic.
-
@tke499
Send me your ics file or url. (eouia0819@gmail.com) -
@tke499 what is the settings in the default calendar,
xxx out your urlset :maximumEvents:100,
-
@sdetweil I set it to 100. The events now show up, but low the list on the side goes to the bottom of the screen. Not the desired effect.
-
@tke499 use limitdays
there are 50 knobs to adjust
-
@tke499 you can try maximumEvents:12 or 15
there is also a way with css. i will test and document in a little while
this should hide more than 10 events in the default calendar
in custom.css.calendar table tr:nth-child(n+10) { display: none; } -
@tke499 I have confirmed the css approach works…
in ~/MagicMirror/css/.custom.css.calendar table tr:nth-child(n+10) { /* 10 is the number of rows you want showing */ display: none; }I have maximumEvents:200
and only 10 lines show with the css posted
without it, it goes to the bottom of the screen
