drag_marker_content

specifies the content of the highlighted block 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_content = function(start, end, event){
    return "";
};

Details

For example:

scheduler.templates.drag_marker_content = function(start, end, event){
    return "<b>my text</b>";
};

See also
Back to top