Getting each task or link of a certain CRUD

I was wondering if there were functions to get each task or link that have had any CRUD operations done on them. something like

gantt.getAllNewTasks(); gantt.getAllDeletedTasks(); gantt.getAllUpdatedTasks();

Is this something I will have to manage myself?

Gantt doesn’t have such function.
You could possibly try to handle necessary events and save such tasks.
See api: docs.dhtmlx.com/gantt/api__refs__gantt.html
Possibly you could handle onTaskCreated, onAfterTaskUpdate and onAfterTaskDelete.
See articles:
docs.dhtmlx.com/gantt/api__gantt … event.html
docs.dhtmlx.com/gantt/api__gantt … event.html
docs.dhtmlx.com/gantt/api__gantt … event.html

Thanks Sten, I was trying to avoid this approach. It seems like I don’t have a choice, thanks for the information.