javascript - Showing 06:00 instead of 6am in FullCalendar -
if choose view week or day left column default show 6am, 7am , on. how go make show 06:00, 07:00 , on instead?
edit: im talking left column weekview , dayview default 6am, 7am, 8am. not timestamp in events.
to further point out problem want changes am/pm 24hour times highlighted part of image: http://bildr.no/view/770893
check out
http://arshaw.com/fullcalendar/docs/text/timeformat/
you should check documentation before else tip
try this
day: 'h:mm{ - h:mm}', // 5:00 - 6:30 week: 'h:mm{ - h:mm}', // 5:00 - 6:30 or 1 might it
http://arshaw.com/fullcalendar/docs/agenda/axisformat/ think it's 1 tbh :p
like this
axisformat: 'h:mm{ - h:mm}', for 24 hour clock u change content to
axisformat: 'h:mm',
Comments
Post a Comment