TimeRangeStore
A class representing a collection of time ranges. Contains a collection of TimeRangeModel records. The class is used by the TimeRanges feature.
Recurring ranges support
This class supports recurrence:
const store = new TimeRangeStore({
data : [{ {
id : 1,
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
- TimeRangeModel - model used by this store
- TimeRanges - feature that displays time ranges on the timeline
- NonWorkingTime - feature for highlighting non-working periods
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.
-
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 TimeRangeStore class, or subclass thereof.
-
Identifies an object as an instance of TimeRangeStore class, or subclass thereof.