Dhtmlx gantt import sort order

While importing a xml file into gantt

all the tasks are getting jumbled we are using pro vesion for the same and paid for the service
not receiving proper response form ur team
task order is very crucial for us

please check and revert back on the same

Hello,
The order of task should be correct in MSP files.
If you mean Primavera P6 files, we are aware of that. One of the possible workarounds is to sort tasks after loading them:

gantt.parse(project.data);
gantt.sort(function (task1, task2){
    if (+task1.id && +task2.id){
        return +task1.id - +task2.id
    }
    else {
        return task1.id.localeCompare(task2.id)
    }
}) 

Here is the snippet where you can check how it works:
https://snippet.dhtmlx.com/4oajd8fp

When are u going to solve it
Any eta on it
we are using Gantt version 8 pro and have also bought the additional server setup for import and export

Hello,
Unfortunately, I cannot give you any ETA.

Have you tried the workaround I suggested? When I tried importing different Primavera P6 files (including the ones exported from DHTMLX Gantt), the order of tasks was the same.

thanks , let me check the workaround