task_time

定义在lightbox标题中显示的日期范围

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