Our pure JavaScript Scheduler component


Post by accounts@projul.com »

Hi,
We want to programmatically enable or disable this group feature on our scheduler. By default it should be disabled. Once user choose to enable it then we need to show the resources as under groups.

This line we are using to disable the feature.

scheduler.features.group.disabled = true;

To enable the feature we are using

scheduler.features.group.disabled = false;

But after this feature is disabled, it's never enabled again.
I am able to reproduce the problem in your examples as well.
https://bryntum.com/products/scheduler/examples/grouping/


Post by tasnim »

Hi,

Thanks for your report. We'll investigate it. Here is the ticket to track progress https://github.com/bryntum/support/issues/6409

Here is a workaround for that

scheduler.features.group.disabled = true;
scheduler.features.group.disabled = false;
scheduler.resourceStore.group('category');

This should be working for you.

Good Luck :),
Tasnim


Post Reply