drag_marker_class

specifies the CSS class that will be applied to the highlighted event's duration on the time scale

startDatethe date when an event is scheduled to begin
endDatethe date when an event is scheduled to be completed
evobjectthe event's object

Example

scheduler.templates.drag_marker_class = function(start, end, event){
    return "";
};

Details

For example:

.myclass{
    background: green;
}
scheduler.templates.drag_marker_class = function(start, end, event){
    return "myclass";
};

See also
Back to top