search envelope-o feed check
Home Unanswered Active Tags New Question
user comment-o

Cell.HasAppointment

Asked by Ante
12 years ago.

Is it possible to do a booleancheck, if a cell has any appointment/event?

For example: If cell.hasApp then background white else black....

Answer posted by Henri Toivonen
12 years ago.

yes.

protected override void OnBeforeEventRender(BeforeEventRenderArgs e)
{
if (Boolean.Parse(e.Tag["CheckedIn"]) == true)
[..]

This question is more than 1 months old and has been closed. Please create a new question if you have anything to add.