Hi, I am trying to adjust events in the BeforeEventRender in the DynamicScheduler.
Problem is that that doesn't work properly for DurationBarColor and BackGroundColor.
Code sample:
Protected Sub schOverview_BeforeEventRender(ByVal sender As Object, ByVal e As DayPilot.Web.Ui.Events.BeforeEventRenderEventArgs) Handles schOverview.BeforeEventRender
e.InnerHTML = "HOI" 'This does work
e.DurationBarColor = "#FF0000" 'This has no effect
e.BackgroundColor = "#222222" 'This has also no effect.End Sub