Allow event creation only through custom page

How to disable event creation when I drag my mouse on an empty slot? I have overridden “onEmptyClick” and disabled “onDblClick”.

Hi,
you can disable the creation of the event by drag :
docs.dhtmlx.com/scheduler/api__s … event.html

scheduler.attachEvent("onBeforeDrag", function (id, mode, e){ return false; });