srividya
srividya

Reputation: 81

Hide from view in Bryntum Scheduler

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

Upvotes: 0

Views: 652

Answers (1)

Mats Bryntse
Mats Bryntse

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

Related Questions