I would like to change the First week of the year. fullcalendar.io
Current View
Shift the Start of week down
I would like to change the First week of the year. fullcalendar.io
Current View
Shift the Start of week down
I'm afraid there is no builtin functionality for this. You could use such trick:
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
defaultView: 'month',
weekNumbers: true,
viewRender: function(view, element) {
$('.fc-week-number').each(function(i, obj) {
var weekNumber = $(obj).find('span:first').text();
if ($.isNumeric(weekNumber)) {
if (parseInt(weekNumber) == 1) {
$(obj).find('span:first').text('');
} else {
$(obj).find('span:first').text(parseInt(weekNumber) - 1);
}
}
});
}
});
Here is the fiddle.