Is there a way to change the time format in the fullcalendar to a 24 hours time.
I'm using CMSMS 2.1.3 and CGCalendar 2.1.1
Change time format in fullcalender CGCalendar
Re: Change time format in fullcalender CGCalendar
Google strftime
- + - + - + - + - + - + -
LATEST TUTORIAL AT CMS CAN BE SIMPLE:
Migrating Company Directory module to LISE
Migrating Company Directory module to LISE
- + - + - + - + - + - + -
Re: Change time format in fullcalender CGCalendar
Hi Rolf,
Tried that but looks likes it's not working on this javascript.
Other sugestions?
Tried that but looks likes it's not working on this javascript.
Other sugestions?
Re: Change time format in fullcalender CGCalendar
Took me a while to find this one:
Inside the FullCalendar template add one option 'eventTimeFormat'
Inside the FullCalendar template add one option 'eventTimeFormat'
Code: Select all
...
dayNamesShort: {$datestrings.dayNamesShort},
firstDay: {$firstdayofweek},
eventTimeFormat: 'HH:mm',
columnFormat: {
month: 'ddd',
week: 'ddd d/w',
day: 'dddd d/M'
},
...
[Solved] Re: Change time format in fullcalender CGCalendar
YES!!! Thanks Velden. That's it 



