Skip to main content

map_time

Description

Specifies the date in the first column of the view

map_time: (start: Date, end: Date, event: any) => string

Parameters

  • start - (required) Date - the date when an event is scheduled to begin
  • end - (required) Date - the date when an event is scheduled to be completed
  • event - (required) object - the event object

Returns

  • text - (string) - html text for rendering in the scheduler

Example

scheduler.templates.map_time = function(start,end,ev){
if (ev._timed)
return this.day_date(ev.start_date, ev.end_date, ev) + " " +
this.event_date(start);
else
return scheduler.templates.day_date(start) + " – " +
scheduler.templates.day_date(end);
};

Applicable views: Map view

Details

note

The template requires the map_view plugin to be activated.

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.