drag_out

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

boolean drag_out;

Example

scheduler.config.drag_out = false;//restrict dragging events from this scheduler 
scheduler.init('scheduler_here',new Date(2009,05,30),"week");
scheduler.load("./data/units.xml");
 
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