Customizing the dhx_cal_date?

Is there a way to customize the dhx_cal_date in the nav bar?

I’d like it to be:

Day of the week Month-Day-Year

Example:

Monday Feb-22-2016

Can this be done?

Hi,
try redefining day_date template of scheduler
scheduler-net.com/docs/day-view-templates.html
scheduler-net.com/docs/format-string.html
It can be done either on the client or on the server
c#:var scheduler = new DHXScheduler(); scheduler.Templates.day_date = "{date:date(%l %M-%d-%Y)}";
js:scheduler.templates.day_date = function(date){ return scheduler.date.date_to_str("%l %M-%d-%Y")(date); };

Thank you! That worked perfect!