Hi, is there a way to filter "empty" columns like it is possible for the schedular.
I am looking for something like this:
onColumnFilter (args) {
var roomIsOccupied = (!args.events.isEmpty());
args.visible = roomIsOccupied);
}
Currently I have a "checkbox room list" and I can enable/disable a room. But if I filter a calendar, i want only see these rooms, which a "accouppied" by the filter.