After upgrading DLL version from (5.8.1956.0) to (8.1.3460.1), Events are not working
10 years ago.
We update dll of old version with latest version as given in subject,
Our Code is as following-
<DayPilot:DayPilotCalendar ID="DayPilotCalendar1" runat="server" ViewType="Resources"
DataColumnField="column" DataEndField="end" DataStartField="Start" DataTextField="Name"
DataValueField="Id" HeightSpec="BusinessHoursNoScroll"
OnBeforeEventRender="DayPilotCalendar1_BeforeEventRender"
BackColor="#FFFFFF" HourNameBackColor="#E1E7F5"
HourBorderColor="#C5CACE" HourHalfBorderColor="#F2F2F2" NonBusinessBackColor="#FFFFFF"
CellSelectColor="#C5CACE" DurationBarVisible="false" HourNameBorderColor="#ACBBCE"
BorderColor="#1E1F24" OnEventMove="DayPilotCalendar1_EventMove" EventMoveHandling="CallBack"
HourWidth="10" EventFontSize="7pt" ShowToolTip="False" TimeRangeSelectedHandling="JavaScript"
TimeRangeSelectedJavaScript="openPatientType(start, end, column);" OnBeforeCellRender="DayPilotCalendar1_BeforeCellRender"
BubbleID="DayPilotBubble1" AfterRenderJavaScript="afterRender(data);" HeaderLevels="2"
Style="top: 0px; left: 0px">
</DayPilot:DayPilotCalendar>
In this code , we are calling javascript function on event (TimeRangeSelectedJavaScript) and code is as folows-
TimeRangeSelectedJavaScript="openPatientType(start, end, column);
Now we are not able to get values of (start, end, column) parameters in javascript function but these values are getting properly when we don't change version. please let us know How we can resolve this issue asap.
Thanks In advance
DayPilot