Our pure JavaScript Scheduler component


Post by arcady »

Scheduler Pro has a feature that shows non working time of resources: https://www.bryntum.com/docs/scheduler-pro/#SchedulerPro/feature/ResourceNonWorkingTime
It uses resource calendars to define which periods of time are non working.

You can see how it works in this demo: https://www.bryntum.com/examples/scheduler-pro/grouping/

The code to turn it on is pretty straightforward:

import 'your-path-to-scheduler-pro-root/lib/SchedulerPro/feature/ResourceNonWorkingTime.js';

...

new SchedulerPro({
    ...
    features : {
        resourceNonWorkingTime : true,
    ...

Post by jandresampaio »

OK, so when using Scheduler (not the Pro version), the way to simulate this is using resource time ranges, correct?


Post by mats »

Yep that gives you the visual indication (but not the end date calculation).


Post Reply