Where can i input the offset?
Can i do that in the default calendar?
Read the statement by Michael Teeuw here.
Latest posts made by fedale
-
RE: MMM-CalendarExt3
-
RE: MMM-CalendarExt3
@Welle05 have you found a solution for this? i have the same issue in Sweden.
And it´s only for fullday events. -
RE: [MMM-Skolmaten] Shows school lunch menus in Sweden from skolmaten.se
@retroflex I am having issues with MMM-Skolmaten. Only says laddar…
I also tried to re installing the module,with any luck -
RE: MMM-CalendarExt3
Could i have icons on different words in calendar?
I only have one calendar, but previously cx2 could get with differnt pictures like this example.if (event.title.search("Work") > -1) { event.icon = "ic:outline-work-outline"; event.className = "work"
}
else if(event.title.search(“Trash”) > -1) {
event.icon = “mdi:recycle”;
event.className = “Trash”
} -
RE: MMM-CalendarExt3
I learnt something new, never thought to look into the module folder css file.
Always though only the main.css and custom.css was the only ones to change.Found the wordning now in MMM-CalendarExt3.css file within the module.
Removing the CW, the way i wanted. Just wanted to share.MMM-CalendarExt3.css file and remove the CW to only get the week number:
.CX3 .cw::before {
content: 'CW ’
} -
RE: MMM-CalendarExt3
@MMRIZE Any surgestions?
Have some other questions.
-
How to remove the CW wording, infront of the weeks number?
-
The eventTransformer does not color not-fullday items. Is there a quick work around for that?
So if i have only an hour in my calendar will still show color.
/*
eventTransformer: (ev) => {
if (ev.title.search(‘garbage’) > -1) ev.color = ‘green’
return ev
}
*/- Also i add picture to the eventTransformer? I had a recyle one for this garbage earlier.
-
-
RE: MMM-CalendarExt3
@sdetweil Thanks, that worked like a charm.
Have some other questions.
-
How to remove the CW wording, infront of the weeks number?
-
The eventTransformer does not color not-fullday items. Is there a quick work around for that?
So if i have only an hour in my calendar will still show color.
/*
eventTransformer: (ev) => {
if (ev.title.search(‘garbage’) > -1) ev.color = ‘green’
return ev
}
*/- Also i add picture to the eventTransformer? I had a recyle one for this garbage earlier.
-
-
RE: MMM-CalendarExt3
Does anyone have a working config for google calendar. The old code i had in EXT2 isnt working with the new EXT3.
In the new EXT3 one i cannot get any feedback from google. -
RE: MMM-CalendarExt3
Ok thanks for the feedback.
I have another question
The new calendarExt3 and the i cant seem to get this transform fuction to work anymore. I had the transform in the config.js file and the custom.css with different words to get different color on each work, as we have family calendar.
Tried to change it to cx3 without any luck. (/* */ is only to stop the code here.)Example
/*
transform: function(event) {
if (event.title.search(“Jobb”) > -1) {
event.icon = “ic:outline-work-outline”;
event.className = “Jobb”;
}*/
In the custom.css:
/*
}
.CX3 .Jobb.fullday {
background-color:rgba(0,128,128);
color:#000;
}
.CX3 .Jobb {
background-color:rgba(0,128,128);
color:#000;
}*/