Day name in day view

Hello,

when the calendar is in the “Day view”, the name of the day (sunday, monday, etc…) is not shown.
You see the date twice, but not what day it is while in the week and in the month view, the name is shown.

How can I show the name of the day in the day view?

Thank you.


Hi,
try redefining the day view templates or the related configs. Check these articles
docs.dhtmlx.com/scheduler/day_vi … lates.html
docs.dhtmlx.com/scheduler/configuration.html

This is exactly what I was looking for.

This code makes the trick.

scheduler.templates.day_date = function(date){
var formatFunc = scheduler.date.date_to_str(scheduler.config.default_date);
var dFunc = scheduler.date.date_to_str(scheduler.config.week_date);
return dFunc(date) + ', ’ + formatFunc(date);
};

Thank you,
Michele