Data Processor

Hello,

I am trying to integrate the Gantt product into our in-house business automation suite. I am trying to implement my own server side “Data Processor” interface and I have a few questions:

  1. Is there a specification of what the “server side” needs to return to the client side data processor?

  2. It seems that for every action performed on the interface, there are at least three requests posted to the server side. Is that normal?

  3. The Gantt interface seems to remember all the “tasks” and “links” added even after gantt.clearAll() is called. This is the case even after the page reloads. Is there a way to completely clear the internal state?

Thanks,
-esr-

Check
docs.dhtmlx.com/dataprocessor__b … iples.html

Also, you can enable REST mode and use normal REST API without any dataprocessor specifity
docs.dhtmlx.com/dataprocessor__i … ithrestapi

It seems that for every action performed on the interface, there are at least three requests posted to the server side. Is that normal?

Nope, one operation must issue one request

The Gantt interface seems to remember all the “tasks” and “links” added even after gantt.clearAll() is called.

gantt.clearAll must remove all data from the gantt.
If it somehow doesn’t work for you, please post a demo link or any other kind of sample, where the issue can be checked.