specifies the CSS class that will be applied to the highlighted event's duration on the time scale
start | Date | the date when an event is scheduled to begin |
end | Date | the date when an event is scheduled to be completed |
ev | object | the event's object |
scheduler.templates.drag_marker_class = function(start, end, event){
return "";
};
For example:
.myclass{
background: green;
}
scheduler.templates.drag_marker_class = function(start, end, event){
return "myclass";
};