<?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 month view for Sept not showing all views]]></title><description><![CDATA[<p dir="auto">I installed the MMM-CalendarExt2 back in August and it was working great. Now that it is September I am having a problem. Now it only shows events up to 3 days after the current day. It shows no events for the rest or the month or the next month. I can’t figure out why it is doing that.</p>
]]></description><link>https://forum.magicmirror.builders/topic/11083/mmm-calendarext2-month-view-for-sept-not-showing-all-views</link><generator>RSS for Node</generator><lastBuildDate>Tue, 09 Jun 2026 21:15:19 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/11083.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 02 Sep 2019 15:28:32 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-CalendarExt2 month view for Sept not showing all views on Mon, 02 Sep 2019 16:15:38 GMT]]></title><description><![CDATA[<p dir="auto">@Sean Thank you that workd.</p>
]]></description><link>https://forum.magicmirror.builders/post/60722</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/60722</guid><dc:creator><![CDATA[aunrea]]></dc:creator><pubDate>Mon, 02 Sep 2019 16:15:38 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-CalendarExt2 month view for Sept not showing all views on Mon, 02 Sep 2019 16:02:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/aunrea" aria-label="Profile: aunrea">@<bdi>aunrea</bdi></a><br />
Default items to display in a view is set to <code>100</code>. Your calendars have more than 100 so some events have been cut off.<br />
<img src="/assets/uploads/files/1567439846303-a1.png" alt="0_1567439845641_a1.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">The purpose of this default limitation is for whom has too many events in his calendar from old history.<br />
Usually, user can <strong>select</strong> the events by <code>filter</code> and <code>sort</code> feature.</p>
<p dir="auto">However in your case, you want total 4 views for 4 months, so it needs to get over 100 events.<br />
<strong>You can set <code>maxItems</code> to bigger number (e.g: 500)</strong><br />
<a href="https://github.com/eouia/MMM-CalendarExt2/wiki/2c.-Configuration:View#common" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/eouia/MMM-CalendarExt2/wiki/2c.-Configuration:View#common</a></p>
<pre><code class="language-js">{
  module: 'MMM-CalendarExt2',
  config: {
    updateInterval: 1000 * 60,
    calendars: [
      ...
    ],
    defaultSet: {
      view: {
        hideOverflow:false,
        timeFormat: "h:mm A",
        maxItems: 500,  // &lt; ------ THIS VALUE
      }
    },
    views: [
      {
          mode: "month",
          name: "Monthly Calendar",
          position: "middle_center",
      },
      ...
    ],
    scenes: [
      {
        name: "current",
        views: ["Monthly Calendar"],
      },
      ...
    ],
  }
},
</code></pre>
<p dir="auto">You can get this.<br />
<img src="/assets/uploads/files/1567440158193-a2.png" alt="0_1567440157685_a2.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/post/60720</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/60720</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Mon, 02 Sep 2019 16:02:47 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-CalendarExt2 month view for Sept not showing all views on Mon, 02 Sep 2019 16:06:59 GMT]]></title><description><![CDATA[<p dir="auto">{<br />
module: ‘MMM-CalendarExt2’,<br />
config: {<br />
updateInterval: 1000 * 60,<br />
calendars: [<br />
{<br />
url: “<a href="https://calendar.google.com/calendar/ical/.../basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/.../basic.ics</a>”,<br />
name: “Candace’s Events”,<br />
className: “candace-event”,<br />
},<br />
{<br />
url: “<a href="https://calendar.google.com/calendar/ical/.../basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/.../basic.ics</a>”,<br />
name: “Sam’s Events”,<br />
className: “sam-event”,<br />
},<br />
{<br />
url: “<a href="https://calendar.google.com/calendar/ical/.../basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/.../basic.ics</a>”,<br />
name: “Liam’s Events”,<br />
className: “liam-event”,<br />
},<br />
{<br />
url: “<a href="https://calendar.google.com/calendar/ical/.../basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/.../basic.ics</a>”,<br />
name: “Casey’s Events”,<br />
className: “casey-event”,<br />
},<br />
{<br />
url: “<a href="https://calendar.google.com/calendar/ical/.../basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/.../basic.ics</a>”,<br />
name: “Family Events”,<br />
className: “family-event”,<br />
},<br />
{<br />
url: “<a href="https://calendar.google.com/calendar/ical/.../basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/.../basic.ics</a>”,<br />
name: “Birthdays”,<br />
className: “birthday-event”,<br />
},<br />
{<br />
url: “<a href="https://calendar.google.com/calendar/ical/en.usa%23holiday%40group.v.calendar.google.com/public/basic.ics" target="_blank" rel="noopener noreferrer nofollow ugc">https://calendar.google.com/calendar/ical/en.usa%23holiday%40group.v.calendar.google.com/public/basic.ics</a>”,<br />
name: “Holidays”,<br />
className: “birthday-event”,<br />
},</p>
<pre><code>    		],
    		views: [
				{
						mode: "month",
						name: "Monthly Calendar",
						position: "middle_center",
						hideOverflow: false,
						timeFormat: "h:mm A",
				},
				{
						mode: "month",
						name: "Next Month",
						position: "middle_center",
						hideOverflow: false,
						timeFormat: "h:mm A",
						fromNow: 1,
				},
				{
						mode: "month",
						name: "Next Next Month",
						position: "middle_center",
						hideOverflow: false,
						timeFormat: "h:mm A",
						fromNow: 2,
				},
				{
						mode: "month",
						name: "Last Month",
						position: "middle_center",
						hideOverflow: false,
						timeFormat: "h:mm A",
						fromNow: -1,
				},
    		],
    		scenes: [
				{
					name: "current",
					views: ["Monthly Calendar"],
				},
				{
					name: "next",
					views: ["Next Month"],
				},
				{
					name: "next_next",
					views: ["Next Next Month"],
				},
				{
					name: "before",
					views: ["Last Month"],
				},

    		],
    	}
	},
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/60715</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/60715</guid><dc:creator><![CDATA[aunrea]]></dc:creator><pubDate>Mon, 02 Sep 2019 16:06:59 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-CalendarExt2 month view for Sept not showing all views on Mon, 02 Sep 2019 15:29:27 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/aunrea" aria-label="Profile: aunrea">@<bdi>aunrea</bdi></a><br />
show me your config.</p>
]]></description><link>https://forum.magicmirror.builders/post/60714</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/60714</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Mon, 02 Sep 2019 15:29:27 GMT</pubDate></item></channel></rss>