I'm trying to bind my rad scheduler with database table data. The data is not getting binded according to the event date. All events gets binded to the current date instead of binding to their appropriate dates. I'm not sure if the DataStartField and DataEndField refers to the start & end dates or start & end times. I only have one date field ( "eventdate") & 2 time fields ("eventtime" & "endtime") in my database.
Here is my code
<telerik:RadScheduler ID="RadScheduler1" runat="server" DataEndField="EndTime" Skin="Office2007" EnableEmbeddedSkins="True"
DataKeyField="EventID" DataSourceID="SqlDataSource1" DataStartField="EventTime" DataSubjectField="Title" GroupingDirection="Horizontal" StartInFullTime="True" ShowFooter="False" StartInsertingInAdvancedForm="True" MinutesPerRow="15"></telerik:RadScheduler>
<asp:SqlDataSource ID="SqlDataSource1" runat="server"
ConnectionString="<%$ ConnectionStrings:Calendar %>"
SelectCommand="SELECT * FROM [EventsSites]"></asp:SqlDataSource>
This is the first time I'm using Rad Scheduler, so this might be a silly issue too. Any help would be appreciated.