I am having a particular issue where my RadScheduler doesn't respond on the first click, the radscheduler just refreshes the page. When I click it again then it works fine, this appears on every event on the RadScheduler even on the Week/Month/Year change. This only appear on one of my RadScheduler I am using, below is the code for the RadScheduler
div class="col-xs-12">
<telerik:RadScheduler RenderMode="Lightweight" runat="server" ID="RadScheduler1" StartEditingInAdvancedForm="False" SelectedView="WeekView"
DataKeyField="ID" DataSubjectField="Subject" DataStartField="Start" CustomAttributeNames="Confidential"
DataEndField="End"
RowHeight="30px"
OnAppointmentCreated="RadScheduler1_OnAppointmentCreated" OnAppointmentClick="RadScheduler1_OnAppointmentClick" Height="100%" ShowFooter="False">
<AppointmentTemplate>
<strong>
<div>
<asp:Label ID="lblArrival" runat="server"></asp:Label> <asp:Image runat="server" ID="imgFlight" ImageUrl="Content/images/landing.png" />
<asp:Label ID="lblDeparture" runat="server"></asp:Label>
</strong>
<br />
<asp:Label ID="lblAvailableSeats" runat="server" Text="Seats:" /> <asp:Label ID="lblSeats" runat="server" />
</div>
</AppointmentTemplate>
<TimeSlotContextMenuSettings EnableDefault="true"></TimeSlotContextMenuSettings>
<AppointmentContextMenuSettings EnableDefault="true"></AppointmentContextMenuSettings>
</telerik:RadScheduler>
</div>