A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
*REQUEST* how to make calendar event colored according to title string found?
-
using MMM-CalendarExt2 (but im sure some things are done the same…)
so i was able to add multiple calendars but one specific calendar is a “shared” calendar and cannot use the option --> .CX2 .event.sharedCalName and assign a color as all events will grab this same color… i found that .event.[data-calendar-name=“xx”] works for specific Cal names but this is by calendar… i want to do this by calendar event and cannot find the appropriate string… does this option even exist? if so, can someone provide it? i.e. for calendar event starting with “E:” color blue while events starting with “M:” color pink, etc… tnx -
@M1st3r-E
You can use transforming inview
configuration.transform: (event) => { if (event.title.search("Birthday") > -1) { // If the event might include "Birthday" in its title, event.className = "BirthdayTitle"; // Assign new CSS class name of that event to "BirthdayTitle" } return event; // Return that event. };
event object could have these properties;
calendarId: 1; calendarName: "Tottenham"; className: "mySoccerClass"; description: "FA Cup, round 3"; duration: 7200; endDate: "1546638300"; endDateJ: "2019-01-04T21:45:00.000Z"; icon: "noto-soccer-ball"; isFullday: false; isMoment: false; isOneday: true; isPassed: false; isRecurring: false; isCancelled: false; location: ""; startDate: "1546631100"; startDateJ: "2019-01-04T19:45:00.000Z"; title: "Team T.B.A. - Tottenham Hotspur"; uid: "1:1546631100:1546638300:op54vk5s1r0ivl8i165ampip88@google.com"; ms_busystatus: "BUSY"; // Only for calendar from MS Outlook. Available : "BUSY", "FREE", "TENTATIVE", "OOF"
-
@MMRIZE tnx alot mate