event_text

specifies the event's text

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.event_text=function(start, end, event){
    return "<a href='http://some.com/details.php?for="+event.id+"'>"
    +event.text+"</a>";
}

Applicable views:Day View, Week View, Units View

Related samples

Details

Note that for Month and Timeline Views you need to use the event_bar_text template to specify the event's text.

See also
Back to top