returns a collection of tasks which occur during the specified period
from | Date | the start date of the period |
to | Date | the end date of the period |
array | an array of tasks' objects |
var tasks = gantt.getTaskByTime(new Date(2013,3,10),new Date(2013,4,10));
for (var i=0; i<tasks.length; i++){
alert(tasks[i].text);
}
// or
var tasks = gantt.getTaskByTime();//returns all tasks
Back to top