<telerik:RadScheduler runat="server" ID="RadScheduler1" StartEditingInAdvancedForm="false"
Width="100%" DayStartTime="08:00:00" DayEndTime="18:00:00" Height="565px" WeekHeaderDateFormat="dd-MMM-yyyy"TimelineView-HeaderDateFormat="dd-MMM-yyyy"
DisplayDeleteConfirmation="False" AllowDelete="false"
DataKeyField="ID" DataSubjectField="Title" DataStartField="StartDate" DataEndField="EndDate"
FirstDayOfWeek="Monday" LastDayOfWeek="Sunday" SelectedView="MonthView"
onappointmentdatabound="RadScheduler1_AppointmentDataBound">
</telerik:RadScheduler>
In the codebehind:
System.Data.OleDb.
OleDbDataAdapter dbAdapter = new System.Data.OleDb.OleDbDataAdapter(SelectCommand, dbCon);
DataSet ds = new DataSet();
dbAdapter.Fill(ds);
RadScheduler1.DataSource = ds.Tables[0]
//RadScheduler1.GroupBy = "title";
//RadScheduler1.GroupingDirection = GroupingDirection.Vertical;
RadScheduler1.DataBind();
The select command contains the field title, which is the name of the group. This all works fine until the group by code is put back in and then nothing is displayed.
Any help appreciated thanks.