drag_marker_content
Description
Specifies the content of the highlighted block on the time scale
drag_marker_content: (start: Date, end: Date, ev: any) => string
Parameters
start- (required) Date - the date when an event is scheduled to beginend- (required) Date - the date when an event is scheduled to be completedev- (required) object - the event's object
Returns
text- (string) - html text for rendering in the scheduler
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>";
};

Related API
Need help?
Got a question about the documentation? Reach out to our technical support team for help and guidance. For custom component solutions, visit the Services page.