Hello,
I'm using the daypilot calendar lite for javascript.
I was wondering if anyone here can tell me how to set the headerDateFormat? Here's what I currently have working:
var cal = new DayPilot.Calendar('dpcCalendar');
cal.days = 7;
cal.api = 2;
cal.DayFormat = 'dddd';
cal.timeFormat = 'Clock24Hours';
cal.headerDateFormat = 'dddd';
cal.Init();
Yet, the headers remain in default format. Only setting the locale will override it, but I need to display weekdays and I don't think there is a locale setting for such. There are no javascript errors etc on the chrome console and the calendar is drawn on the web page correctly otherwise.
What else do I need to do here to display weekday names on the headers?
cheers,