I am using fullCalendar
in my project. My issue is I want to prepopulte the calendar, I am using these settings as
initScheduleCalendar = ->
scheduleCalendar = $('#cloud-recording-calendar').fullCalendar
axisFormat: 'HH'
allDaySlot: false
columnFormat: 'ddd'
defaultDate: '1970-01-01'
slotDuration: '00:60:00'
defaultView: 'agendaWeek'
dayNamesShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"]
eventColor: '#428bca'
editable: true
and the days I want to highlight are
fullWeekSchedule =
"Monday": ["08:00-17:30"]
"Tuesday": ["08:00-17:30"]
"Wednesday": ["08:00-17:30"]
"Thursday": ["08:00-17:30"]
"Friday": ["08:00-17:30"]
"Saturday": []
"Sunday": []
I want those days pre highlighted on first page load. I dont know whic option is going to be used for this? any help will be appreciated thanks