External Drag & Drop in unit view

How can i use the External Drag & Drop function in unit view?
And how can i disable that the lightbox pops up after i drag a new event into the scheduler?

How can i use the External Drag & Drop function in unit view?
With default configuration, it must be enabled from the start, no any special steps are required.

And how can i disable that the lightbox pops up after i drag
scheduler.config.edit_on_create = false;

i get an error in unit view:

object is expected: rule: 1 in dhtmlxscheduler_units.js
object is expected: rule: 1 char: 3310 in dhtmlxscheduler_units.js

and how can i disable the lightbox only after a new event is created using the drag function,
the lightbox still needs to pop up when i make a new event the normal way.

can somebody help me with this please?
thanks in advance!

Hello,

scheduler.attachEvent("onBeforeEventChanged", function(event_object, native_event, is_new){ if(native_event.type == 'mouseup' && is_new) return false; return true; });

Problem confirmed, fix will be included in the upcoming version and we will post temporary solution when one will be available.

Best regards,
Ilya