-
Notifications
You must be signed in to change notification settings - Fork 324
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot read custom columns from MPP imports #90
Comments
@AntoRin, Regarding the As a workaround, you can obtain the |
I am not only talking about start1 and finish1 properties. Let's say there's a column in the MPP called "totally_custom_column". Is there a way to read the values for this column using .mpp import? |
@AntoRin, Some of them will be imported, but there is no way to tell which properties will work. We use the MPXJ library to convert files, and when it doesn't return a custom property from a file, we cannot do anything there. When I checked the |
I am using the following block of code to import MPP files:
gantt.importFromMSProject({ data: file, taskProperties: ["Notes", "Name", "Start", "Finish", "Start1", "Finish1"], callback: function (project) {}...
Given that "Start", "Finish", "Start1", "Finish1" are all names of columns in the MPP file. But after import, the properties "Start1" and "Finish1" happen to be null, while the properties "Start" and "Finish" happen to be time in hours - although the file clearly has dates.
The text was updated successfully, but these errors were encountered: