drag_in

restrict dragging events to the calling scheduler from any other scheduler(s)

boolean drag_in;

Example

scheduler.init('scheduler_here',new Date(2009,05,30),"week");
scheduler.load("./data/units.xml");
 
 
scheduler2.config.drag_in = false;//restrict dragging events to this scheduler 
scheduler2 = Scheduler.getSchedulerInstance();
scheduler2.init('scheduler_here_2',new Date(2009,05,30),"week");


Default value:

true
Details

This property is available for Scheduler PRO (Commercial (since October 6, 2021), Enterprise and Ultimate licenses ) only

The property requires the outerdrag plugin to be activated.

See also
Back to top