ResourceTimeRangeStore
A class representing a collection of resource time ranges. Contains a collection of ResourceTimeRangeModel records. The class is used by the ResourceTimeRanges feature.
Recurring ranges support
This class supports recurrence:
const store = new ResourceTimeRangeStore({
data : [{ {
id : 1,
resourceId : 'r1',
startDate : '2019-01-01T11:00',
endDate : '2019-01-01T13:00',
name : 'Coffee break',
// this time range should repeat every day
recurrenceRule : 'FREQ=DAILY'
}]
});
See also
- ResourceTimeRangeModel - Resource time range model
- ResourceTimeRanges - Resource time ranges feature
No results
Configs
Configs are options you supply in a configuration object when creating an instance of this class-
CrudManager must load stores in the correct order. Lowest first.
-
This store should be linked to a ResourceStore to link the time ranges to resources
-
CrudManager must sync stores in the correct order. Lowest first.
Properties
Properties are getters/setters or publicly accessible variables on this class-
Identifies an object as an instance of ResourceTimeRangeStore class, or subclass thereof.
-
Identifies an object as an instance of ResourceTimeRangeStore class, or subclass thereof.