Hi Dan,
I am on version 3.7 and having difficulty with a postback occuring when an event is clicked. I believe this postback is interferring with my popup window displaying.
I have the TimeRangeSelectedJavaScript implementing the same popup javascript function as the EventClickJavaScript function and it work perfectly without a postback. This is why I assume the postback is interferring.
<DayPilot:DayPilotCalendar ID="DayPilotCalendar1" runat="server" DataColumnField="Resource_Name"
DataEndField="ET" DataStartField="BT" DataTextField="Event" DataValueField="Resource_Name"
ViewType="Resources" Style="left: 3px; top: -42px" TimeRangeSelectedHandling="JavaScript"
TimeRangeSelectedJavaScript="openPopup(start,end,column);"
BusinessBeginsHour="7"
BusinessEndsHour="21" OnBeforeEventRender="DayPilotCalendar1_BeforeEventRender"
EventDeleteHandling="CallBack" OnEventDelete="DayPilotCalendar1_EventDelete"
HourFontSize="14pt" HeightSpec="BusinessHoursNoScroll" EventClickHandling="JavaScript"
EventClickJavaScript="openPopup(start,end,column);" EventEditHandling="JavaScript"
EventEditJavaScript="openPopup(start,end,column);">
</DayPilot:DayPilotCalendar>
Hope this helps