Hi,Is it possible to add custom text to the AllDay column box. I used the OnRenderCell to apply a custom CSS on empty cell, but would like to be able to put a custom message like "Planned" into the box (the red box in the screenshot).
public void OnRenderCell(RenderCellEventArgs args)
{
if (args.ElementType == ElementType.EmptyCells)
args.CssClasses = new List<string>() { "test" };
}
Thank you