뷰의 첫 번째 열에 표시되는 날짜를 설정합니다
start | Date | 이벤트가 시작되는 날짜 |
end | Date | 이벤트가 종료되는 날짜 |
event | object | 이벤트 객체 |
scheduler.templates.map_time = function(start,end,ev){
if (ev._timed)
return this.day_date(ev.start_date, ev.end_date, ev) + " " +
this.event_date(start);
else
return scheduler.templates.day_date(start) + " – " +
scheduler.templates.day_date(end);
};
이 템플릿은 map_view 플러그인이 활성화되어 있어야 합니다.