Hide from view in Bryntum Scheduler

634 Views Asked by At

In the Bryntum scheduler UI, can we hide a resource and the entire day activity row temporarily?

1

There are 1 best solutions below

3
On

Very easy, just look at the store filter API: https://bryntum.com/docs/scheduler/#Core/data/Store#function-filterBy

scheduler.resourceStore.filterBy(resource => resource.age > 25);

Then to reset filters:

https://bryntum.com/docs/scheduler/#Core/data/Store#function-clearFilters