By the following js lines, I’m able to limit the choice of event start time and end time to 8:00 and 22:00 respectively, and every event will start from 00 to 00.
scheduler.config.first_hour = 8;
scheduler.config.last_hour = 22;
scheduler.config.time_step = 60;
scheduler.config.limit_time_select = true;
But what if I want to limit the start time at the middle of an hour and end at 20 minutes of an hour? Say, all event must start from X:30 and end at X:20.
Any suggestions on the way to achieve this?