MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. DDE12
    3. Posts
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    D
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 12
    • Posts 64
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: MMM-CalendarExt3Agenda

      @BKeyport Thank you!
      I’m using both startTime and endTime and can’t get it lined up right.

      .CX3A .event .title {
        color: var(--calendarColor);
        order: 1;
        width: 120px; /* Adjust for your region width. Here I am using fixed value to make things simple */
        flex-grow: 1;
      }
      
      .CX3A .event .time.startTime {
        order: 2;
        width: 52px;  
        text-align: right;
      }
      
      .CX3A .event .startTime::after {
        content: ' -';
      }
      
      .CX3A .event .time.endTime {
        order: 2;
        width: 65px;  
        text-align: right;
      }
      
      .CX3A .event .symbol {
        order: 4;
      }
      
      .CX3A .event .headline {
        justify-content: space-between;
      }
      
      .CX3A .event .description {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        max-width: 100%;
        font-size: 90%;
        color: orange;
        padding-left: 20px;
      }
      
      posted in Utilities
      D
      DDE12
    • RE: MMM-CalendarExt3

      My events are displayed in reverse chronological order in mode: “week”. Where is the setting the for this? I can post the config.js settings if necessary.
      Reverse order.PNG

      posted in Utilities
      D
      DDE12
    • RE: MMM-CalendarExt3Agenda

      How do I change the order of information events from
      ___________________________________________________________
      1:30 PM - 2:30 PM Event Name ________________________

      to

      ___________________________________________________________
      Event Name ________________________1:30 PM - 2:30 PM

      posted in Utilities
      D
      DDE12
    • RE: Module is changing width of position

      @BKeyport
      That works great! Thank you!

      posted in General Discussion
      D
      DDE12
    • RE: MMM-CalendarExt3

      @sdetweil
      I’m completely lost now. I thought all of this went in config.js.

      posted in Utilities
      D
      DDE12
    • RE: Module is changing width of position

      @KamiSchami
      Thank you for looking at this. It shrank the clock down within the space that it was in but it has still enlarged the fuel module. Why is it doing that? I just want it to be in the same place that the default clock was and not change the size of other modules.
      Clock size 02.PNG

      posted in General Discussion
      D
      DDE12
    • RE: MMM-CalendarExt3

      @sdetweil
      Yeah, that would definitely be less confusing. Do I have the classes: “FamilyWeek” and classes: “FamilyMonth” in the right place in the CalenderExt3 config(s)?

      posted in Utilities
      D
      DDE12
    • RE: MMM-CalendarExt3

      @sdetweil
      Like so…?

      modules:  [
         {
                module: "MMM-CalendarExt3",
                position: "fullscreen_above",
                classes: 'MonthPage',
                      config: {
                           mode: "month",
                           instanceId: "FamilyMonth",
                           calendarSet: ['Holidays', 'Dad', 'Mom', 'Child'],
                      }
          },
          {
                module: "MMM-CalendarExt3",
                position: "fullscreen_above",
                classes: 'WeeksPage' 
                      config: {
                           mode: "week",
                           instanceId: "FamilyWeek",
                          calendarSet: ['Holidays', 'Dad', 'Mom', 'Child'],
                      }
          },
          {
                  module: 'MMM-pages',
                       config: {
                                   modules: [
                                                  ['MonthPage'],
                                                  ['WeeksPage']
                                     ],
                        },
           },
        }
      ]
      
      posted in Utilities
      D
      DDE12
    • RE: MMM-CalendarExt3

      @sdetweil
      Thank you for looking at this. Is this the proper implementation for your suggestion?

      modules:  [
         ['MonthPage'],
         ['WeeksPage']
         {
                module: "MMM-CalendarExt3",
                position: "fullscreen_above",
                classes: 'MonthPage',
                      config: {
                           mode: "month",
                           instanceId: "FamilyMonth",
                           calendarSet: ['Holidays', 'Dad', 'Mom', 'Child'],
                      }
          },
          {
                module: "MMM-CalendarExt3",
                position: "fullscreen_above",
                classes: 'WeeksPage' 
                      config: {
                           mode: "week",
                           instanceId: "FamilyWeek",
                          calendarSet: ['Holidays', 'Dad', 'Mom', 'Child'],
                      }
          },
          {
                module: "MMM-Carousel",
                        config: {
                              mode: 'slides',
                              slides: {
                                         "Slide 2": ['MonthPage'],
                                         "Slide 3": ['WeeksPage']
                               }
                        }
           },
      ]
      
      posted in Utilities
      D
      DDE12
    • RE: MMM-CalendarExt3

      How do I reference the specific instances of CExt3? Like on different carousel pages, where I would have a month mode on one page and a week mode on another. I have this config:

      module: "calendar",
      	    position: "top_left",
                  broadcastPastEvents: true,
                  maximumNumberOfDays: 300,            
                  config: {
                      instanceId: "FamilyCal",
                      fade: false,
                      colored: true,
                      displaySymbol: false,
      	        calendars: [
                              {   
                              name: "Holidays",
      		        url: "webcal://www.calendarlabs.com/ical-calendar/ics/76/US_Holidays.ics",
                              color: "rgb(240,175,20)"
                              },
                              {   
                              name: "Dad",
                              url: "https://private.calendar.com",
                              color: "rgb(60,250,60)"
                              },
                              {   
                              name: "Mom",
                              url: "https://private.calendar.com",
                              color: "rgb(250,40,150)"
                              },
                              {  
                              name: "Child",
                              url: "https://private.calendar.com",
                              color: "rgb(180,40,250)"
                              }
      		]
      	}
      },
      {
                module: "MMM-CalendarExt3",
                position: "fullscreen_above",
                title: "",
                config: {
                      mode: "month",
                      instanceId: "FamilyMonth",
                      calendarSet: ['Holidays', 'Dad', 'Mom', 'Child'],
                      maxEventLines: 5,
                      firstDayOfWeek: 0,
                      minimalDaysOfNewYear: 1,
                      eventHeight: '18px',
                      useSymbol: false                
                  }
              },*/
              {
                  module: "MMM-CalendarExt3",
                  position: "fullscreen_above",
                  title: "",
                  config: {
                      mode: "week",
                      instanceId: "FamilyWeek",
                      weekIndex: -1,
                      weeksInView: 5,
                      calendarSet: ['Holidays', 'Dad', 'Mom', 'Child'],
                      maxEventLines: 5,
                      firstDayOfWeek: 0,
                      minimalDaysOfNewYear: 1,
                      eventHeight: '18px',
                      useSymbol: false                
               }
       }
      
      posted in Utilities
      D
      DDE12
    • 1 / 1