enables/disables parsing of the resource assignments
Available only in PRO Edition
gantt.config.process_resource_assignments = false;
This functionality is available in the PRO edition only.
When you assign resources to the specific time of a task, the functionality requires the process_resource_assignments property to be enabled. This is related to the fact, that the property provides parsing of the values from gantt.config.resource_property of tasks into the internal resource assignment objects.
As a result, you are be able to manipulate the resource assignments via the DataStore object, for instance to get the necessary assignment object or update it.
But if you only need to assign resources to the tasks without specifying time or duration of the assignment, you can disable parsing of the assignments using the config:
gantt.config.process_resource_assignments = false;
added in v7.1
Back to top