drag_highlight

highlights the event's initial position and duration on the time scale when you are dragging an event over the scheduler

boolean drag_highlight;

Example

//removes the highlighting
scheduler.config.drag_highlight = false;  
scheduler.init('scheduler_here',new Date(2010,0,10),"week");
scheduler.load("./data/events.xml");


Default value:

true
Details

See also
Change log

Highlighting of the event's initial position was added in v7.1

Back to top