Can I prevent events with conflict time?
问题 How can I prevent events with conflict time? Is there any variable to set up? 回答1: No, there is not a variable to set, but you can use something like clientEvents which retrieves events that fullcalendar has in memory. You can use the function below in the eventDrop. In the case below it uses a function to filter out whether the event will have have an overlap or not. function checkOverlap(event) { var start = new Date(event.start); var end = new Date(event.end); var overlap = $('#calendar')