Our pure JavaScript Scheduler component


Post by v-paulrausch »

Hi Team,

Below is our use case.
We will have a list of Holidays for example : Mar 29(Good Friday), we need to show that holiday info against Resources for that specific day or days based on list of Holidays. which feature can we use for this requirement?


Post by mats »

Sounds like you could either use our resource non-working time, which is based on the data in the calendars assigned to the resources. Or you could try rolling your own based on the ResourceTimeRanges feature:

https://bryntum.com/products/schedulerpro/examples/resource-non-working-time/

or

https://bryntum.com/products/scheduler/examples/resourcetimeranges/

Is that close to what you're looking to build?


Post by v-paulrausch »

Hi Mat,

Below is how we are expecting the UI, holiday information will be available in separate data source. In the provided links I think the holiday or times info is in the resourceTimeRanges. how we can use data source having list of holidays with or in between start and end dates to apply Holiday against resources.

Screenshot 2024-02-26 145803.png
Screenshot 2024-02-26 145803.png (35.4 KiB) Viewed 93 times

Post by mats »

If you study the demo for resource time ranges, you'll see how you will have to change your data structure to fit into the expected structure for resource time ranges. They share the same data model with Events:

 resourceTimeRanges = [
        {
            id             : 1,
            resourceId     : 'r1',
            startDate      : '2019-01-01T11:00',
            endDate        : '2019-01-01T13:00',
            name           : 'Lunch',
            // this time range should repeat every day
            recurrenceRule : 'FREQ=DAILY',
            important      : false
        },
        {
            id         : 2,
            resourceId : 'r8',
            startDate  : '2019-01-01T11:00',
            endDate    : '2019-01-01T13:00',
            name       : 'Lunch',
            important  : false
        },
        ]

Post Reply