I am trying to show visibleRange from 2017-08-15 to 2017-09-03, but on the calendar show's range: 27, 28, 29, 30, 31, 1, 2. Missing half of the days from the range. But if I set range from 2017-08-10 to 2017-09-01, shows all date's inside the range. Here is the image from the range 2017-08-15 to 2017-09-03
Here is the code I used:
$("#calendar").fullCalendar({
defaultView: 'month',
fixedWeekCount: true,
selectable: true,
visibleRange: {
start: '2017-08-15',
end: '2017-09-03'
},
validRange: {
start: '2017-08-15',
end: '2017-09-03'
},
disableDragging: true,
editable: true,
events: [
{
title : '55.000 Qmiles',
start : '2017-10-13'
},
{
title : '55.000 Qmiles',
start : '2018-04-08'
}
]
});
The reason why I need this is to create a 15-days calendar, when you click NEXT it will show next 15 days instead of the full next month. visibleRange is the way i found it could work, but I got this "bug" since sometimes the range will not show all days.