Calendar Report Time Format

The time format on the Calendar Report (Month) shows as follows
11a
2p
2:30pI would like to show the time format as hh:mm am/pm
11:00 am
02:00 pm
02:30 pm##what is the use of “Group ID” field in the Calendar Report

Group ID seems to make repeated events based on the value of the initial Event ID.

How to show the time in HH:mm am/pm

You may read FullCalendar’s docs on Date Formatting, you can set eventTimeFormat to ICU format “hh:mm a”.e.g.

<script>
ew.calendarOptions.fullCalendarOptions.eventTimeFormat = "hh:mm a";
</script>

To add options to FullCalendar you may use Page_Head (Example 4) and add properties to ew.calendarOptions.fullCalendarOptions (which is an object with storing options for initializing FullCalendar) by JavaScript.

Thanks. It works properly.

hello, I try with the code in phpmaker 2024 but this failurecode:

<script>
ew.calendarOptions.fullCalendarOptions.eventTimeFormat = "hh:mm a";
</script>

this code put in : server events>all pages> page headthe error is : syntax error, unexpected token “<”, expecting end of filevery grateful for the help on this

You may find out the exact location of the syntax error in your browser’s Console panel. The code you posted does not have syntax error.

You are right, it seems that the code does not recognize me since it warns me that the page is in Quirks Mode, I am using phpmaker 2024, and the calendar reported that it already comes in the version, I would understand that the Quirks Mode should not give me problems

Do not use Quirks Mode anymore, old browsers like IE are not supported.