Disable All-Day row event creation

I would like to prevent the user from creating events via the all-day event row, but still display the row and have time available for event creation during the day. Essentially marking all-day events as invalid

Hi @bruce.mclavy,

You can prevent all-day event creation by returning false inside the onEventCreate event in case of allDay events:

onEventCreate: function (args) {
  if (args.event.allDay) {
    return false;
  }
}