I am using datatable as a datasource to radScheduler and it is working fine when the page loads for the first time by showing all the appointments with todays date.. When I click on next day or previous day buttons scheduler was empty though it has some appointments exists for the next day.
Please see the code below.
<telerik:RadScheduler ID="RadScheduler1" runat="server" Width="90%" Height="600px" Skin="Outlook"
DayStartTime="06:00:00" DayEndTime="22:00:00" ShowViewTabs="False" DataKeyField="REP_APPT_ID" DataSubjectField="SUBJECT" DataStartField="START_DT_TIME" DataEndField="END_DT_TIME" AllowDelete="False" AllowEdit="False" AllowInsert="False" FirstDayOfWeek="Sunday" LastDayOfWeek="Saturday" OverflowBehavior="Scroll" SelectedView="DayView" OnClientAppointmentDoubleClick="OnClientAppointmentDoubleClick" >
</telerik:RadScheduler>
Protected
Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
loadScheduler()
End Sub
Private Sub loadScheduler()
Dim repAppt As New REP_APPT()
repAppt.LoadApptsbyRepbyDate(287, RadScheduler1.SelectedDate)RadScheduler1.DataSource = repAppt.DefaultView
RadScheduler1.DataBind()
End Sub