TimeRangeModel
This class represents a named time range. It is used by the TimeRanges feature.
This class inherits most of its fields from TimeSpan. The most important of these fields are the following:
It's an indirect subclass of Model. Please refer to documentation of those classes to become familiar with the base interface of this class. The data source of any field can be customized in the subclass. Please refer to Model for details.
Time ranges may recur. See the recurrenceRule field.
const timeRange = new TimeRangeModel({
name : 'Lunch break',
startDate : '2024-01-15T12:00',
endDate : '2024-01-15T13:00',
cls : 'lunch-break'
});
See also
- TimeRanges - Time ranges feature
- TimeSpan - Base time span model
- ResourceTimeRangeModel - Per-resource time range model
Fields
Fields belong to a Model class and define the Model data structure-
The name of the time span (or Event / Task)
-
The numeric part of the timespan's duration (the number of units).
-
Calculated field which encapsulates the duration's magnitude and unit. This field will not be persisted, setting it will update the duration and durationUnit fields.
-
The timespan recurrence rule. A string in RFC-5545 described format ("RRULE" expression).
-
CSS class specifying an icon to apply to the rendered time span element. Note: In case event is a milestone, using
iconClswith dependency feature might slightly decrease performance because feature will refer to the DOM to get exact size of the element. -
A CSS style string (applied to
style.cssText) or object (applied tostyle)record.style = 'color: red;font-weight: 800'; -
Start expanded or not (only valid for tree data)
-
This is a read-only field provided in server synchronization packets to specify which position the node takes in the parent's ordered children array. This index is set on load and gets updated on reordering nodes in tree. Sorting and filtering have no effect on it.
-
Deprecated:
This field has been deprecated. Please read the guide to find out if your app needs to use the new isFullyLoaded field.
This field is added to the class at runtime when the Store is configured with lazyLoad. The number specified should reflect the total amount of children of a parent node, including nested descendants.
Properties
Properties are getters/setters or publicly accessible variables on this class-
Identifies an object as an instance of ModelLink class, or subclass thereof.
-
Identifies an object as an instance of ModelStm class, or subclass thereof.
-
Identifies an object as an instance of RecurringTimeSpan class, or subclass thereof.
-
Identifies an object as an instance of TimeRangeModel class, or subclass thereof.
-
Identifies an object as an instance of TimeZonedDatesMixin class, or subclass thereof.
-
Identifies an object as an instance of TreeNode class, or subclass thereof.
-
A class property getter for the default values of internal properties for this class.
-
An array containing all the defined fields for this Model class. This will include all superclass's defined fields.
-
An object containing all the defined fields for this Model class. This will include all superclass's defined fields through its prototype chain. So be aware that
Object.keysandObject.entrieswill only access this class's defined fields. -
The data source for the id field which provides the ID of instances of this Model.
-
An empty array that can be used as a default value.
-
An empty object that can be used as a default value.
-
Identifies an object as an instance of Model class, or subclass thereof.
-
Identifies an object as an instance of TimeRangeModel class, or subclass thereof.
-
Identifies an object as an instance of TimeSpan class, or subclass thereof.
-
For copied records, this property links to the original model instance from which it was copied.
-
True if this Model is currently batching its changes.
-
True if this models changes are currently being committed.
-
True if this model has any uncommitted changes.
-
Check if record has valid data. Default implementation returns true, override in your model to do actual validation.
-
Get a map of the modified fields in form of an object. The field´s dataSource is used as the property name in the returned object. The record's id is included unless its persist config is
false. -
Get a map of the modified data fields along with any alwaysWrite fields, in form of an object. The field´s dataSource is used as the property name in the returned object. Used internally by AjaxStore / CrudManager when sending updates.
-
Returns data for allpersistable fields in form of an object, using dataSource if present.
-
Returns a map of the modified persistable fields
-
Returns the string value for display purposes of an instance of this Model class. Needs to be overridden in subclasses.
-
When called on a group header row returns list of records in that group. Returns
undefinedotherwise. -
Returns true for a group header record
-
Gets the records internalId. It is assigned during creation, guaranteed to be globally unique among models.
-
Returns true if the record is new and has not been persisted (and received a proper id).
-
Returns a copy of the full configuration which was used to configure this object.
-
This property is set to
truebefore theconstructorreturns. -
This property is set to
trueon entry to the destroy method. It remains on the objects after returning fromdestroy(). If isDestroyed istrue, this property will also betrue, so there is no need to test for both (for example,comp.isDestroying || comp.isDestroyed). -
Are other records linked to this record?
-
Is this record linked to another record?
-
Get the original record this record is linked to.
-
Get links to this record.
-
Returns the event store this event is part of, if any.
-
Get the first store that this model is assigned to.
-
Reference to STM manager, if used
-
This yields
trueif this record is eligible for syncing with the server. It can yieldfalseif the record is in the middle of a batched update, or if it is a tentative record yet to be confirmed as a new addition. -
Returns true if this record is not part of any store.
-
Retrieve all children, excluding filtered out nodes (by traversing sub nodes)
-
Retrieve all children, including filtered out nodes (by traversing sub nodes)
-
Depth in the tree at which this node exists. First visual level of nodes are at level 0, their direct children at level 1 and so on.
-
Count all children (including sub-children) for a node (in its `firstStore´)
-
Get the first child of this node
-
Returns index path to this node. This is the index of each node in the node path starting from the topmost parent. (only relevant when its part of a tree store).
-
Is a leaf node in a tree structure?
-
Returns true for parent nodes with children loaded (there might still be no children)
-
Is a parent node in a tree structure?
-
Returns
trueif this node is the root of the tree -
Get the last child of this node
-
Get the next sibling of this node
-
This is a read-only property providing access to the parent node.
-
Get the previous sibling of this node
-
Returns count of all preceding sibling nodes (including their children).
-
Array of tree nodes without any filter applied. On first filter, will take order from sorted
children, but is not thereafter kept in sorted order, so order should not be relied upon. -
Count visible (expanded) children (including sub-children) for a node (in its
firstStore) -
Returns the WBS code of this model (e.g '2.1.3'). Only relevant when part of a tree store, as in the Gantt chart.
-
Indicates if the timespan is an occurrence of another recurring timespan.
-
Indicates if the timespan is recurring.
-
The setter used by Model#inSet when addExceptionDate is called. Adding an exception must trigger change processing in a recurring event, so it must be changed through a set call. Also, the change must be batchable with other changes.
-
The original {@lScheduler.model.TimeSpan#field-startDate startDate} of this event before any modifications took place. Used by removeOccurrence and detachFromRecurringEvent
-
If this event is an occurrence of a recurring event, then this property yields its zero-based occurrence index in the sequence.
-
A Map, keyed by each date an occurrence intersects, of occurrences of this event.
-
The recurrence model used for the timespan.
-
Name of the class representing the recurrence model, defaults to RecurrenceModel
-
The "main" timespan this model is an occurrence of. For non-occurrences returns
null. -
Returns
trueif this timespan supports recurring. -
Returns an array of dates in this range. If the range starts/ends not at the beginning of day, the whole day will be included.
-
Returns the duration of this Event in milliseconds.
-
Returns true if record is a milestone.
-
Checks if the range record has both start and end dates set and start <= end
-
Returns the event raw duration in milliseconds. Calculated as a simple distance between the event start and end dates in milliseconds. And thus this value (in Scheduler Pro and Gantt) doesn't take into account non-working time nor the project conversion rates.
-
Returns values of the persistable tree-defining fields: parentId, orderedParentIndex, and parentIndex or sparseIndex. parentIndex is omitted when sparseIndex is used.
Functions
Functions are methods available for calling on the class-
This optional class method is called when a class is mixed in using the mixin() method.
-
Registers this class type with its Factory
-
Makes getters and setters for related records. Populates a Model#relation array with the relations, to allow it to be modified later when assigning stores.
-
cancelBatch( ) Model
Cancels current batch operation. Any changes during the batch are discarded.
-
Reverts changes in this back to their original values.
-
Called from insertChild to notify StateTrackingManager about children insertion. Provides it with all necessary context information collected in beforeInsertChild required to undo/redo the action.
-
Called from removeChild to notify StateTrackingManager about children removing. Provides it with all necessary context information collected in beforeRemoveChild required to undo/redo the action.
-
Called during creation to also turn any children into Models joined to the same stores as this model
-
Detaches an occurrence from its owning recurring event so that it can be added to the eventStore either as an exception, or as the start of a new recurring sequence.
-
The method is triggered when the timespan recurrence settings get changed. It updates the recurrenceRule field in this case.
-
Override of Model's method. If an isOccurrence is passed, it is detached from its parent recurring event. If it still has a recurrence then the recurring event is changed to stop at the occurrence date. If it has no recurrence an exception is added at the occurrence date.
-
Removes this recurring timespan's cached occurrences.
-
Removes all cached occurrences on or after the passed date from this recurring timespan's cached occurrences.
-
Initializes model relations. Called from store when adding a record.
-
Removes all records from the rootNode