specifies the content of the highlighted block 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_content = function(start, end, event){
return "";
};
For example:
scheduler.templates.drag_marker_content = function(start, end, event){
return "<b>my text</b>";
};