agenda_text

specifies the text in the second column of the Agenda view

startDatethe date when an event is scheduled to begin
endDatethe date when an event is scheduled to be completed
eventobjectthe event object

Example

scheduler.templates.agenda_text = function(start,end,ev){
     return ev.text;
};

Applicable views:Agenda View
Details

The template requires the agenda_view plugin to be activated.

Note, if the agenda_text template isn't specified, the 'd-m-y' part of the date will be set according to the day_date template.

See also
Back to top