dhx_cal_date 2 day span only showing 1 date.

In this example:
jsfiddle.net/G63rt/3/

How would I get dhx_cal_date to show 17 Sep - 18 Sep . Right now it shows:
17 Sep -17 Sep

-Thanks

Hi,
using “timeline_date” template:

scheduler.templates.timeline_date = function(date1, date2){ if (date1.getDay()==date2.getDay() && date2-date1<(24*60*60*1000)) return scheduler.templates.day_date(date1); return scheduler.templates.day_date(date1) + " &ndash; " + scheduler.templates.day_date(date2); };
docs.dhtmlx.com/scheduler/api__s … plate.html