I've implemented fullcalendar api to show all business/working days of the company.
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
allDaySlot:false,
events: evtObj, //evtObj contains list of working days in JSON
editable: false,
height: 630
});
For example : From 1st June 2015 to 31st Oct 2015. Now I've a business holiday list, say : 25th June, 31st August......
Now how can I remove these dates from being shown. As event object contains only start date and end date as parameters
{
title: event name,
start: start time,
end : end time
}