Dear, I have a big problem. I'm doing a reservation system for hours, so I'm using fullcalendar.io
a fairly complete library.
What I need to do is: How to color a light green or transparent green, certain hours of the week periodically. As if to prove that those hours are available.
For that I added an event but in fullcalendar does not support periodic events (to be repeated every Monday). I just need to color the hours available with a start time, end time and the day of the week.
Is it possible to do that?
$('#calendario').fullCalendar({
defaultView: 'agendaWeek',
allDaySlot: false,
header: {
left: 'prev,next today myCustomButton',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
dayClick: function(date, jsEvent, view) {
//alert('Clicked on: ' + date.format());
$("#hora_seleccionada").html(date.format("MM/DD/YYYY, h:mm:ss"));
}
});