process_resource_assignments

enables/disables parsing of the resource assignments

boolean process_resource_assignments;

Available only in PRO Edition

Example

gantt.config.process_resource_assignments = false;


Default value:

true

Related samples

Details

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;
See also
Change log

added in v7.1

Back to top