• Recent
  • Tags
  • Unsolved
  • Solved
  • MagicMirror² Repository
  • Documentation
  • 3rd-Party-Modules
  • Donate
  • Discord
  • Register
  • Login
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-CalendarWeek

Scheduled Pinned Locked Moved Utilities
33 Posts 18 Posters 19.7k Views 18 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.
  • C Offline
    Cattoo
    last edited by Dec 3, 2018, 2:27 PM

    Hi,
    I have set the config to
    maximumNumberOfDays: 7,
    showEndDate: true
    displayDescription: true

    But it aint taking it, what could be wrong?
    Only seeing the default values.

    Y 1 Reply Last reply Dec 4, 2018, 1:30 PM Reply Quote 0
    • Y Offline
      yawns Moderator @Cattoo
      last edited by Dec 4, 2018, 1:30 PM

      @cattoo said in MMM-CalendarWeek:

      Hi,
      I have set the config to
      maximumNumberOfDays: 7,
      showEndDate: true
      displayDescription: true

      But it aint taking it, what could be wrong?
      Only seeing the default values.

      Please post the entire MMM-CalendarWeek section of your config.js, just remove any personal details like links to your calendars. Maybe you added the config details in the wrong place?

      C 1 Reply Last reply Dec 4, 2018, 1:50 PM Reply Quote 0
      • C Offline
        Cattoo @yawns
        last edited by Dec 4, 2018, 1:50 PM

        Here is the code

        {
        			module: "MMM-CalendarWeek",
        			position: "bottom_bar",
        			config: {
        				calendars: [
        					{
        						symbol: "calendar-check-o",
        						displayLocation: 'true',
        						displayDescriptio: "true",
        						maximumNumberOfDays: '5',
        						showEndDate: "true",
        						url: "************"
        					}
        				]
        		}
        		},
        
        
        1 Reply Last reply Reply Quote 0
        • Y Offline
          yawns Moderator
          last edited by Dec 5, 2018, 8:22 AM

          Okay, please try this.

          {
          	module: "MMM-CalendarWeek",
          	position: "bottom_bar",
          	config: {
          		showEndDate: true,
          		displayLocation: true,
          		displayDescription: true,
          		calendars: [
          			{
          				symbol: "calendar-check-o",
          				maximumNumberOfDays: 5,
          				url: "************"
          			}
          		]
          	}
          },
          
          C 1 Reply Last reply Dec 5, 2018, 10:29 AM Reply Quote 1
          • C Offline
            Cattoo @yawns
            last edited by Dec 5, 2018, 10:29 AM

            That did the trick, thanks a lot :)

            @yawns said in MMM-CalendarWeek:

            Okay, please try this.

            {
            	module: "MMM-CalendarWeek",
            	position: "bottom_bar",
            	config: {
            		showEndDate: true,
            		displayLocation: true,
            		displayDescription: true,
            		calendars: [
            			{
            				symbol: "calendar-check-o",
            				maximumNumberOfDays: 5,
            				url: "************"
            			}
            		]
            	}
            },
            
            1 Reply Last reply Reply Quote 1
            • P Offline
              PTcrusher
              last edited by Dec 17, 2018, 2:14 PM

              For some reason i cannot get CalendarWeek to display more than 4 days, could you kindly take a look at my configuration?

              {
              		 module: "MMM-CalendarWeek",
              		 displayLocation: true,
              		 displayDescription: true,
              		 maximumNumberOfDays: "7",
              		 maximumDaysPerLine: "7",
              		 position: "bottom_bar", // This can be any of the regions. Best results in bottom region.
              		 config: {
              				 // The config property is optional.
              				 // If no config is set, an example calendar is shown.
              				 // See 'Configuration options' for more information.
              				 calendars: [
              						 {
              								 maximumNumberOfDays: "7",
              								 symbol: "google",
              								 url: "",
              						 },
              						 {
              								 maximumNumberOfDays: "7",
              								 symbol: "umbrella-beach",
              								 url: "",
              						 },
              						 {
              								 maximumNumberOfDays: "7",
              								 symbol: "building",
              								 url: "",
              						 },
              						 {
              								 maximumNumberOfDays: "7",
              								 symbol: "birthday-cake",
              								 url: "",
              						 }
              				 ],
              		 }
              },
              

              Thanks in advance,
              Edgar Santos

              P 1 Reply Last reply Dec 17, 2018, 2:21 PM Reply Quote 0
              • P Offline
                PTcrusher @PTcrusher
                last edited by Dec 17, 2018, 2:21 PM

                @ptcrusher said in MMM-CalendarWeek:

                For some reason i cannot get CalendarWeek to display more than 4 days, could you kindly take a look at my configuration?

                {
                		 module: "MMM-CalendarWeek",
                		 displayLocation: true,
                		 displayDescription: true,
                		 maximumNumberOfDays: "7",
                		 maximumDaysPerLine: "7",
                		 position: "bottom_bar", // This can be any of the regions. Best results in bottom region.
                		 config: {
                				 // The config property is optional.
                				 // If no config is set, an example calendar is shown.
                				 // See 'Configuration options' for more information.
                				 calendars: [
                						 {
                								 maximumNumberOfDays: "7",
                								 symbol: "google",
                								 url: "",
                						 },
                						 {
                								 maximumNumberOfDays: "7",
                								 symbol: "umbrella-beach",
                								 url: "",
                						 },
                						 {
                								 maximumNumberOfDays: "7",
                								 symbol: "building",
                								 url: "",
                						 },
                						 {
                								 maximumNumberOfDays: "7",
                								 symbol: "birthday-cake",
                								 url: "",
                						 }
                				 ],
                		 }
                },
                

                Thanks in advance,
                Edgar Santos

                This options need to go to the config key :)

                displayLocation: true,
                displayDescription: true,
                maximumNumberOfDays: "7",
                maximumDaysPerLine: "7",
                

                Now it works fine

                1 Reply Last reply Reply Quote 0
                • Q Offline
                  qjaxxx
                  last edited by Jan 7, 2019, 6:34 PM

                  Hi sorry for the lack of information, I have gotten your module to the point where it shows that no upcoming events are listed. So it IS showing up now. Would I actually make the config adjustments in the main config file, or are those adjustments to be made in the secondary file or node helper I think is what it is called? My code is attached. I adjusted my specific Ical url and username/password. Any help is appreciated.

                  Thanks,

                  image

                  H 1 Reply Last reply Apr 26, 2019, 5:08 PM Reply Quote 0
                  • O Offline
                    othomys
                    last edited by Jan 13, 2019, 12:47 PM

                    Hello,

                    I have integrated several calendars. I would like to add a separate icon to each calendar. In which folder do I have to put the new symbols? What properties must the symbols have? (Type, size)

                    Many Thanks.

                    H 1 Reply Last reply Apr 26, 2019, 5:11 PM Reply Quote 2
                    • B Offline
                      bolish
                      last edited by bolish Feb 9, 2019, 1:47 PM Feb 9, 2019, 1:47 PM

                      Hi,

                      Great module!
                      Is there any way to display it as a table? I mean adding lines to separate each date cell?
                      Something similar to :

                      link text

                      Maybe by aplying around with the .css?

                      H 1 Reply Last reply Apr 26, 2019, 5:14 PM Reply Quote 0
                      • 1
                      • 2
                      • 3
                      • 4
                      • 1 / 4
                      • 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