Reputation: 81
In the Bryntum scheduler UI, can we hide a resource and the entire day activity row temporarily?
Upvotes: 0
Views: 652
Reputation: 564
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
Upvotes: 0