I would like to change the display order of the month/day. DAY/MONTH instead of MONTH/DAY.
BasicWeek View: https://fullcalendar.io/docs/v3/basic-view
Just add the columnFormat
in the View Option Hash
:
$(document).ready(function() {
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
defaultDate: '2014-06-12',
defaultView: 'basicWeek',
editable: true,
columnFormat:{ // <===THERE
month: 'ddd',
week: 'ddd D/M',
day: 'dddd'
},