Hi, I want to change the individual cell color in daypilot lite depending on certain condition. So, I've modified the source code by adding beforeeventrender handler like this
public class BeforeEventRenderEventArgs : EventArgs
{
private string value;
private string durationBarColor;
private string BackColor;
public string Value
{
get { return value; }
}
public string DurationBarColor
{
get
{
return durationBarColor;
}
set
{
durationBarColor = value;
}
}
public string BackgroundColor
{
get
{
return BackColor;
}
set
{
BackColor = value;
}
}
public BeforeEventRenderEventArgs(string value)
{
this.value = value;
}
}
Then I've added the daypilot calendar on my web page and Written some code the DayPilotCalendar1_BeforeEventRender(object sender, DayPilot.Web.Ui.BeforeEventRenderEventArgs e) event.
The problem is this event is not hitting when the page is loading..
Do I need to modify anymore in the source code?
Appreciate any help..