@MMRIZE Hallo,
now I tested the Module and it works fantasic.
Thank you very much.
Read the statement by Michael Teeuw here.
Latest posts made by Old_Death
-
RE: MMM-CalendarExt3Agenda no longer works after a certain time.
-
RE: MMM-CalendarExt3Agenda no longer works after a certain time.
@MMRIZE Sorry, I was waiting for your replay. Now I has updated the Module and I will tell you soon, if it works korrekt.
Thank you. -
MMM-CalendarExt3Agenda no longer works after a certain time.
I have completely set up the MagicMirror, which means all modules are configured and display the data correctly.
The modules likely to be affected by the problem are:
Calendar module, shows all dates.
MMM-CalendarExt3, gets the data and displays it correctly.
MMM-CalendarExt3Agenda, gets the data and displays it correctly.
What can be said about the MMM-CalendarExt3Agenda module is that it changes the data. See post here:
https://forum.magicmirror.builders/topic/18707/modul-calendarext3agenda/12?page=2Now I put the MagicMirror in the right place and noticed the following error.
After about 40 minutes of running time, no more data will be displayed in the MMM-CalendarExt3Agenda module.
Only an empty mini calendar is displayed.The other modules (Calendar and MMM-CalendarExt3) display the data.
Does anyone know the problem or can help me troubleshoot?
-
RE: Modul CalendarExt3Agenda
@MMRIZE said in Modul CalendarExt3Agenda:
’
I also have a fundamental question of understanding.
The ’ character is used in the examples here.
I have to use the character " for it to work.
Why is that? -
RE: Modul CalendarExt3Agenda
@MMRIZE
thanks for the answer and the patch.I installed this, but unfortunately there was no improvement in the result.
If I enter it like in the example, there are no more entries.The points for the appointments are only displayed correctly in the mini calendar.
Here is my config for the module.
{ module: "MMM-CalendarExt3Agenda", carouselId: "Seite2", position: "top_left", header: "Natalia", config: { instanceId: "basicCalendar", locale: 'de-DE', firstDayOfWeek: 1, startDayIndex: -1, endDayIndex: 15, onlyEventDays: 15, eventFilter: (ev) => { return (ev.title.search("Natalia:") > -1) }, eventTransformer: (ev) => { ev.title = ev.title.replace("Natalia:", "") return ev } } },
-
RE: Modul CalendarExt3Agenda
I only want the dates to be shown with the title “Natalia”. These titles should then be changed. The text “Natalia” should be removed here.
-
Modul CalendarExt3Agenda
Hello,
I would like to combine the two functions eventFilter and eventTransform.
Here is the example:eventFilter: (ev) => {
if (ev.title.search(“Natalia:”)) return false
return true
},
eventTransform: (ev) => {
if (ev.title.search(“Natalia:”) > -1) ev.title=ev.title.replace(“Natalia:”,“”);
return ev
}But only the first function (Filter) works, but not the second (Transform)
Can someone please help me with this?
Thanks