[Custom View] Event with no key displayed wrong

I’ve defined a new custom view with it’s own key, I’ve also defined a way to “filter” the view in order to display only certain columns (the columns represent rooms which are filtered by the building in which the room is).

When the view is filtered, the events, which are binded to id (columns) that are not displayed, are on the first column.

I.E.

Building1
Room1
Room2

Building 2
Room3
Room4

If the scheduler is showing only the columns “Room3” and “Room4” the events binded to Room2 will appear in the column Room3

Is there a way to hide those events instead?

Hi,
if it’s UnitView, you can use UnitsView.SkipIncorrect propertyvar units = new UnitsView(...); unit.SkipIncorrect = true;

Wonderful, it worked.

Thank you, as always great support.