GanttStores
Mixin
Functions for store assignment and store event listeners. Properties are aliases to corresponding ones of Gantt's project instance.
Configs
Configs are options you supply in a configuration object when creating an instance of this class-
Inline assignments, will be loaded into the backing project's AssignmentStore.
Has a corresponding runtime assignments property.
-
Inline calendars, will be loaded into the backing project's CalendarManagerStore.
Has a corresponding runtime calendars property.
-
Inline dependencies, will be loaded into the backing project's DependencyStore.
Has a corresponding runtime dependencies property.
-
Inline resources, will be loaded into the backing project's ResourceStore.
Has a corresponding runtime resources property.
-
Inline tasks, will be loaded into an internally created TaskStore.
Has a corresponding runtime tasks property.
-
Inline time ranges, will be loaded into the backing project's time range store.
Has a corresponding runtime timeRanges property.
Properties
Properties are getters/setters or publicly accessible variables on this class-
Identifies an object as an instance of GanttStores class, or subclass thereof.
-
Identifies an object as an instance of GanttStores class, or subclass thereof.
-
Get/set assignments, applies to the backing project's AssignmentStore.
Has a corresponding assignments config.
-
The CalendarManagerStore instance of the backing project.
-
Get/set calendars, applies to the backing projects CalendarManagerStore.
Has a corresponding calendars config.
-
Get/set dependencies, applies to the backing projects DependencyStore.
Has a corresponding dependencies config.
-
Get/set resources, applies to the backing project's ResourceStore.
Has a corresponding resources config.
-
Get/set the task store instance of the backing project.
Has a corresponding taskStore config.
-
Get/set tasks, applies to the backing project's EventStore. Returns a flat array of all tasks in the task store.
Has a corresponding tasks config.
-
Get/set time ranges, applies to the backing project's TimeRangeStore.
Has a corresponding timeRanges config.
Functions
Functions are methods available for calling on the class-
onEventStoreBatchedUpdate( )private
Listener to the batchedUpdate event which fires when a field is changed on a record which is batch updating. Occasionally UIs must keep in sync with batched changes. For example, the TaskResize feature performs batched updating of the startDate/endDate and it tells its client to listen to batchedUpdate.