MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    MMM-CalendarExt3Agenda - Can I Make it show more events?

    Scheduled Pinned Locked Moved Unsolved Troubleshooting
    11 Posts 4 Posters 5.6k Views 6 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • BKeyportB Offline
      BKeyport Module Developer @Kelemvor
      last edited by

      @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: [
      			```

      The "E" in "Javascript" stands for "Easy"

      1 Reply Last reply Reply Quote 0
      • M Offline
        MMRIZE @Kelemvor
        last edited by

        @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 set none, It might be extended automatically, I think, not tested…)
        1 Reply Last reply Reply Quote 0
        • S Do not disturb
          sdetweil @Kelemvor
          last edited by

          @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

          Sam

          How to add modules

          learning how to use browser developers window for css changes

          K 1 Reply Last reply Reply Quote 0
          • K Offline
            Kelemvor @sdetweil
            last edited by

            @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.

            cadd0f37-53a6-4f56-9369-d3a484aeb1e7-image.png

            It still looks like it did in my above pictures where it only goes partway own the screen.

            M 1 Reply Last reply Reply Quote 0
            • M Offline
              MMRIZE @Kelemvor
              last edited by

              @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…?
              1 Reply Last reply Reply Quote 0
              • 1
              • 2
              • 2 / 2
              • First post
                Last post
              Enjoying MagicMirror? Please consider a donation!
              MagicMirror created by Michael Teeuw.
              Forum managed by Sam, technical setup by Karsten.
              This forum is using NodeBB as its core | Contributors
              Contact | Privacy Policy