Is it possible to do a booleancheck, if a cell has any appointment/event?
For example: If cell.hasApp then background white else black....
yes.
protected override void OnBeforeEventRender(BeforeEventRenderArgs e) { if (Boolean.Parse(e.Tag["CheckedIn"]) == true) [..]