Hi,
I downloaded the demo of DayPilot yesterday and working on a new asp.net (framework 2.0) application. I want to do some work on server side double click event of calendar control, my page is ajax enabled. But when I do the double click (or single click), the server side event if not getting fired. Can you please let me know what's wrong in the code?
<DayPilot:DayPilotCalendar ID="DayPilotCalendar1" ClientObjectName="dpc" runat="server" BusinessBeginsHour="8"
BusinessEndsHour="18" ContextMenuID="DayPilotMenu1" Days="7" EventDoubleClickHandling="PostBack"
HeightSpec="BusinessHours" OnEventDoubleClick="DayPilotCalendar1_EventDoubleClick"
OnTimeRangeSelected="DayPilotCalendar1_TimeRangeSelected" TimeRangeSelectedHandling="Hold"
Width="831px" OnEventMenuClick="DayPilotCalendar1_EventMenuClick">
</DayPilot:DayPilotCalendar>
Server side (code behind) code.
protected void DayPilotCalendar1_EventDoubleClick(object sender, EventClickEventArgs e)
{
writeMessage("DayPilotCalendar1_EventDoubleClick1");
}
Thanks in advance.