<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[MMM-CalendarExt2 daily not shown]]></title><description><![CDATA[<p dir="auto">so i was configuring the MMM-CalendarExt2 but now it doesn’t work correctly anymore<br />
i can only see 1 of the 2 upcoming. (i also dont see the +1 under it)</p>
<p dir="auto">and on the daily part i don’t see the new meetings i make only the one that i can see on upcomming wil be displayed there.</p>
<p dir="auto">after some fricking around i got it that if i make a new meeting it does show it on upcoming but i still can’t see it on daily.</p>
<p dir="auto">here is my .js contents and .css is under it.<br />
Myconfig:</p>
<pre><code>/* Magic Mirror Config Sample
 *
 * By Michael Teeuw http://michaelteeuw.nl
 * MIT Licensed.
 *
 * For more information how you can configurate this file
 * See https://github.com/MichMich/MagicMirror#configuration
 *
 */

var config = {
	address: "localhost", // Address to listen on, can be:
	                      // - "localhost", "127.0.0.1", "::1" to listen on loopback interface
	                      // - another specific IPv4/6 to listen on a specific interface
	                      // - "", "0.0.0.0", "::" to listen on any interface
	                      // Default, when address config is left out, is "localhost"
	port: 8080,
	ipWhitelist: ["127.0.0.1", "::ffff:127.0.0.1", "::1"], // Set [] to allow all IP addresses
	                                                       // or add a specific IPv4 of 192.168.1.5 :
	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.1.5"],
	                                                       // or IPv4 range of 192.168.3.0 --&gt; 192.168.3.15 use CIDR format :
	                                                       // ["127.0.0.1", "::ffff:127.0.0.1", "::1", "::ffff:192.168.3.0/28"],

	language: "nl",
	timeFormat: 24,
	units: "metric",

	modules: [
		{
  		module: "MMM-CalendarExt2",
		  config: {
		    calendars : [
		      {
		        url: "",
		      },
		    ],
		    views: [
		      {
		        name: "vergaderkamer",
		        mode: "daily",
			type: "column",
		        position: "top_left",
		        slotTitle: "meeting van vandaag",
			fromNow:0,
		        slotCount:1,
		        slotMaxHeight: "480px",
		        hideOverflow:false,
		        transform:(event) =&gt; {
			  event.name = event.description
		          if (event.startDate &lt; ((Date.now()/1000 + 60*5))) { // Check whether 60*5 seconds remain until start
		           
		            event.icon = "flat-color-icons:alarm-clock" // redefine icon
		            event.className = "blueStyle" // redefine CSS style name. (You can define CSS style selector `.CX2 .redStyle`)
		          }
		          return event
		        },
		      },
			  {
			    name: "VIEW3",
			    mode: "upcoming",
			    type: "column",
			    position:"top_right",
			    maxDays: "0",
			    transform:(event) =&gt; {
			        var inBetween = function(target, from, to) {
			          from = Date.now()/1000 + 60 * from
			          to = Date.now()/1000 + 60 * to
			          if (target &gt;= from &amp;&amp; target &lt; to) {
			            return true
			          } else {
			            return false
			          }
			        }
				if (inBetween(event.startDate, 14, 15)) {
			          event.className = "greenStyle"
			          event.title = "[15 MIN!] " + event.title
			        }
			        if (inBetween(event.startDate, 13, 14)) {
			          event.className = "greenStyle"
			          event.title = "[14 MIN!] " + event.title
			        }
			        if (inBetween(event.startDate, 12, 13)) {
			          event.className = "greenStyle"
			          event.title = "[13 MIN!] " + event.title
			        }
			        if (inBetween(event.startDate, 11, 12)) {
			          event.className = "greenStyle"
			          event.title = "[12 MIN!] " + event.title
			        }
			        if (inBetween(event.startDate, 10, 11)) {
			          event.className = "greenStyle"
			          event.title = "[11 MIN!] " + event.title
			        }
				if (inBetween(event.startDate, 9, 10)) {
			          event.className = "orangeStyle"
			          event.title = "[10 MIN!] " + event.title
			        }
			        if (inBetween(event.startDate, 8, 9)) {
			          event.className = "orangeStyle"
			          event.title = "[9 MIN!] " + event.title
			        }
			        if (inBetween(event.startDate, 7, 8)) {
			          event.className = "orangeStyle"
			          event.title = "[8 MIN!] " + event.title
			        }
			        if (inBetween(event.startDate, 6, 7)) {
			          event.className = "orangeStyle"
			          event.title = "[7 MIN!] " + event.title
			        }
			        if (inBetween(event.startDate, 5, 6)) {
			          event.className = "orangeStyle"
			          event.title = "[6 MIN!] " + event.title
			        }
			        if (inBetween(event.startDate, 4, 5)) {
			          event.className = "redStyle"
			          event.title = "[5 MIN!] " + event.title
			        }
			        if (inBetween(event.startDate, 3, 4)) {
			          event.className = "redStyle"
			          event.title = "[4 MIN!] " + event.title
			        }
			        if (inBetween(event.startDate, 2, 3)) {
			          event.className = "redStyle"
			          event.title = "[3 MIN!] " + event.title
			        }
			        if (inBetween(event.startDate, 1, 2)) {
			          event.className = "redStyle"
			          event.title = "[2 MIN!] " + event.title
			        }
			        if (inBetween(event.startDate, 0, 1)) {
			          event.className = "redStyle"
			          event.title = "[1 MIN!] " + event.title
			        }
			        return event
			      }
			},
		    ],
		    scenes: [
		      {
		        name: "Vergaderkamer",
		        views: [],
		        className: "myClass",
		      },
		    ],
		  },
		},
			{
			module: "clock",
			position: "top_center",
			config: {
			    timeFormat: "24",
			    displaySeconds: "true",
			    clockBold: "true",
			    displayType: "both",
			    anologFace: "face-006",
			    timeZone: "Europe/Amsterdam",
			}
		},
	]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {module.exports = config;}

</code></pre>
<p dir="auto">Mycustom.CSS</p>
<pre><code>/*****************************************************
 * Magic Mirror                                      *
 * Custom CSS                                        *
 *                                                   *
 * By Michael Teeuw http://michaelteeuw.nl           *
 * MIT Licensed.                                     *
 *                                                   *
 * Add any custom CSS below.                         *
 * Changes to this files will be ignored by GIT. *
 *****************************************************/

.calander .xlarge{
font-size: 25px;
}


.CX2 {
   --row-min-width: 650px;
   --row-max-width: 650px;
   --column-min-width: 650px;
   --column-max-width: 650px;
   --font-size: 25px;
}

.CX2 .redStyle {
  color:#000;
  background-color:#E99;
  border-left:2px solid #F00;
}

.CX2 .greenStyle {
  color:#000;
  background-color:#090;
  border-left:2px solid #0C0;
}

.CX2 .orangeStyle {
  color:#000;
  background-color:#C60;
  border-left:2px solid #F80;
}

.CX2 .blueStyle {
  color:#000;
  background-color:#44F;
  border-left:2px solid #66F;
}


</code></pre>
]]></description><link>https://forum.magicmirror.builders/topic/11231/mmm-calendarext2-daily-not-shown</link><generator>RSS for Node</generator><lastBuildDate>Wed, 15 Jul 2026 19:48:56 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/11231.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 27 Sep 2019 07:21:43 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-CalendarExt2 daily not shown on Fri, 27 Sep 2019 08:46:11 GMT]]></title><description><![CDATA[<p dir="auto">nope wasn’t it<br />
I know for sure that it should work now i just need to get it to work again.</p>
]]></description><link>https://forum.magicmirror.builders/post/61749</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/61749</guid><dc:creator><![CDATA[MerlijnAlmer]]></dc:creator><pubDate>Fri, 27 Sep 2019 08:46:11 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-CalendarExt2 daily not shown on Fri, 27 Sep 2019 08:28:46 GMT]]></title><description><![CDATA[<p dir="auto">might have found the issue its probably in the ICS link<br />
if i try my personal link it works but the shared link doesn’t</p>
]]></description><link>https://forum.magicmirror.builders/post/61748</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/61748</guid><dc:creator><![CDATA[MerlijnAlmer]]></dc:creator><pubDate>Fri, 27 Sep 2019 08:28:46 GMT</pubDate></item></channel></rss>