Im working with fullcalendar and the scheduler plugin. What im trying to do is having some more advanced date range.
I input a JS array a start time and differents duration. It should then create the range accordingly.
Here's an example
Inputed array : array = [ 30min, 30min, 120min, 30min, 9h ]
Outputed date range :
9h, 9h30, 10h, 13h, 13h30
Regarding the scheduler im fine, i've done it in the rangeUpdated and updateGridDates functions and it works pretty well.
My concern is about the calendar since im a bit lost in the source code and i can't really find the place where I should do the logic for this.
Can any kind soul guide me througt this ?
Thank's in advance