Import MS Project file dates problem

Hi

When I try to import a project file (mpp or xml), I receive a bad date format.

Callback data

Code

I can see the correct dates if I try to upload my file in your example page

Hello,
Probably, there is no specified date format in your code so Gantt parses it with wrong format.
Put the following code before gantt.init() function and try to import the data again.

gantt.config.xml_date = "%Y-%m-%d %H:%i";
1 Like