rightside_text

定义任务条右侧显示的文本

startDate任务开始的日期
endDate任务计划完成的日期
taskTask任务对象本身

Example

gantt.templates.rightside_text = function(start, end, task){
    return "ID: #" + task.id;
};

Related samples

See also
Back to top