Hide from view in Bryntum Scheduler

590 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 answers

3
Mats Bryntse 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