How do I change the Date header format in the Resources view

How do I change the Date header format in the Resources view?

Now it shows 7 May 2013.

But I’d like it to show Tuesday May 7, 2013.

How do I do this?

Hi,
you can override header contents with scheduler.templates[viewName_date] templates,
for example: scheduler.createUnitsView({ name:"unit", ... }); scheduler.templates.unit_date = function(date){ return scheduler.date.date_to_str("%l %F %j, %Y")(date); };Here is date format options
docs.dhtmlx.com/doku.php?id=dhtm … ngs_format