task_time

라이트박스 헤더에 표시되는 날짜 범위를 정의합니다

startDate작업이 시작되는 날짜
endDate작업이 완료될 것으로 예상되는 날짜
taskTask작업 객체 자체

Example

gantt.templates.task_time = function(start,end,task){
    return gantt.templates.task_date(start)+" - "+gantt.templates.task_end_date(end);
};

See also
Back to top