Scheduler: How does one call a server side method from event click ?
Based on my readings elsewhere in this forum, it seems one is to set the EventClickHandling to "PostBack", and then set this property in the back end code:
DayPilotSchedulerDayView.EventClick += DayPilot.Web.Ui.EventClickDelegate("DayPilotCalendar_EventClick");
...but it wont compile ("EventClickDelegate is a 'type' which is not valid in the given context").
Any hints ?....I want this to execute in my C# code:
private void DayPilotCalendar_EventClick([whatever should be in here]){
}