quick_info_content

定义弹出编辑表单中显示的内容

startDate任务的开始时间
endDate任务预计完成时间
taskTask任务对象本身

Example

gantt.templates.quick_info_content = function(start, end, task){ 
       return task.details || task.text;
};

Related samples

Details

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

See also
Back to top