v7.3.0

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

No results

Configs

Configs are options you supply in a configuration object when creating an instance of this class
  • loadPriority : Number
    private

    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

  • syncPriority : Number
    private

    CrudManager must sync stores in the correct order. Lowest first.

Properties

Properties are getters/setters or publicly accessible variables on this class

Functions

Functions are methods available for calling on the class