Change color onclick through callback
12 years ago.
How can/should color for a event be changer onclick.
I get the event clicked in the callback but the BackGround color property is not available so how to get and change the EventObjects properties?
protected void DayPilotCalendar1_EventClick(object sender, DayPilot.Web.Ui.Events.EventClickEventArgs e)
{
string test = e.Text; -- Works but here I would like to find the object where I can set this.BackgroundColor or similar
}
DayPilot