how to get all the tasks of the project created?

Hi,

Is there any method using which I can get all the tasks of the project.

1 Like

Hi,

var tasks = gantt.serialize().tasks; //where "tasks" is an array of tasks' objects or

var tasks = gantt.getTaskByTime();        //returns all tasks as an array of objects

docs.dhtmlx.com/gantt/desktop__t … ganttchart

thanks…