Currently, I am in the process of developing a fire department shift calendar using fullcalendar. I am faced with the task of altering the CSS for specific dates at irregular intervals that do not correspond to typical days of the week.
In this particular scenario, each shift consists of three 24-hour periods within a nine-day cycle. Each day within a shift is denoted by a distinct color on the calendar. For reference, please see the following example: Shift Calendar Example
While I have successfully managed to modify the CSS for date cells and repeat them based on days of the week as illustrated in the code snippet below:
events: [{
title:"Shift One",
id: "one",
allDay: true,
rendering: 'background',
color: 'blue',
dow: [1,4] // Repeat monday and thursday
}]
I am now inquiring whether it is possible to establish a pattern involving days 1,3,5 and replicate this pattern on day 10?