My scheduler becomes unintelligible if there are more than two overlapping appointments, because the columns have a fixed width that really barely handles two appointments side by side. I would like the columns to expand to accommodate an unlimited number of overlapping appointments.
Here's my Scheduler:
Thanks,
Here's my Scheduler:
<telerik:RadScheduler ID="schPlanner" AllowDelete="true" AllowEdit="false" AllowInsert="false" DataDescriptionField="Description" DataEndField="TimeEnd" DataKeyField="AppointmentKey" DataStartField="TimeStart" DataSubjectField="Subject" DayEndTime="22:00:00" DayStartTime="06:00:00" FirstDayOfWeek="Sunday" Height="100%" OverflowBehavior="Expand" RowHeight="21px" runat="server" SelectedView="WeekView" ShowAllDayRow="false" ShowFooter="false" ShowHeader="false" Skin="Web20" ToolTip="" Width="800" WorkDayEndTime="22:00:00" WorkDayStartTime="06:00:00"> <Localization ConfirmDeleteText="Are you sure you want to delete this class?" /> <WeekView ColumnHeaderDateFormat="dddd" /> <AppointmentTemplate> <%#Eval("Subject")%> </AppointmentTemplate> </telerik:RadScheduler> Thanks,