@sdetweil OK not sure if this is part of it or not but if I make an appointment it doesn’t show up on the mm calendar but if I do it as an event it will.
Read the statement by Michael Teeuw here.
Posts
-
RE: Display start time and end time on meetings
-
RE: Display start time and end time on meetings
@sdetweil I did and for events now it’s all working great but start time and end time on meetings doesn’t have times on it… I don’t need times on all day events.
-
Display start time and end time on meetings
Re: How to display start and end times/dates of events in calendar I’ve not been able to get the start time and end time on meetings in the calendar.
-
RE: Calendar Event Display start and end date
@sdetweil Ok i think i got it now…
if (this.config.showEnd) {
timeWrapper.innerHTML += “-”;
timeWrapper.innerHTML += this.capFirst(moment(event.endDate, “x”).format(this.config.dateEndFormat));
} else
// For full day events we use the fullDayEventDateFormat
if (event.fullDayEvent) { -
RE: Calendar Event Display start and end date
@sdetweil if (this.config.timeFormat === “absolute”) {
// Use dateFormat
timeWrapper.innerHTML = this.capFirst(moment(event.startDate, “x”).format(this.config.dateFormat));
// Add end time if showEnd
if (this.config.showEnd) {
timeWrapper.innerHTML += “-”;
timeWrapper.innerHTML += this.capFirst(moment(event.endDate, “x”).format(this.config.dateEndFormat));
}
// For full day events we use the fullDayEventDateFormat
if (event.fullDayEvent) {
//subtract one second so that fullDayEvents end at 23:59:59, and not at 0:00:00 one the next day
event.endDate -= oneSecond;
timeWrapper.innerHTML = this.capFirst(moment(event.startDate, “x”).format(this.config.fullDayEventDateFormat));
} -
RE: Calendar Event Display start and end date
@sdetweil Don’t think i am doing this right as it’s not loading the calendar.js file now… Do I just copy this to the bottom of the file the same it?
-
Calendar Event Display start and end date
Re: How to display start and end times/dates of events in calendarI’ve not been able to set all-day events to display start and end dates. Any guidance here?
-
RE: Google Task module
I looked through the log and don’t see anything that would be an issue…
“loader.js:184 Load script: modules/MMM-GoogleTasks/MMM-GoogleTasks.js
:8080/modules/MMM-GoogleTasks/MMM-GoogleTasks.js:7 Uncaught SyntaxError: Unexpected identifier
loader.js:184 Load script: modules/default/updatenotification/updatenotification.js” -
RE: Google Task module
that worked perfectly and i was able to set the header etc all looks great now… But this morning when I started my Google task nothing is showing now… Do you have any tips on trouble shooting modules that use an API ?