See the Scheduler - Adaptive Appointments demo. Instead of the following code:
JavaScriptappointmentTooltipTemplate: function(data, index, container) {
return getAppointmentTemplate(data);
},
should be:
JavaScriptappointmentTooltipTemplate: function(data, container) {
return getAppointmentTemplate(data);
},