quick_info_date

设置弹出编辑表单中显示的日期

startDate任务计划开始的日期
endDate任务计划结束的日期
taskTask任务对象

Example

gantt.templates.quick_info_date = function(start, end, task){
       return gantt.templates.task_time(start, end, task);
};

Related samples

Details

该模板是Quick Info扩展的一部分,请确保已启用quick_info插件。

See also
Back to top