My events always starts at 13PM and finishes on 11 AM (Image attached).
The problem comes when I try to customize the timerangeselection with start and end to match this behavior. It fills the entire cell and fails because allowEventOverlap = false (Image attached) .
I’ve tried with the following code, but got no luck. Any workaround?
onTimeRangeSelecting: function (args) {
args.start = args.start.addHours(13)
args.end = args.end.addHours(-13)
},