task_unscheduled_time

specifies the dates of unscheduled tasks

taskTaskthe task object

Example

gantt.templates.task_unscheduled_time = function(task){
   return "";
};

Related samples

Details

By default, returns an empty string.

If a task is unscheduled, i.e. has the unscheduled:true property in its configuraion object, all its dates will be rendered with empty rows. Check the example below:

Related sample:  Rendering dates in unscheduled tasks

In case you need to show some dates for an unscheduled task, you can do it with the help of the date_grid template.

See also
Back to top