I am still having corruption in the date display at the min the week view I have tried everything think of to get the columns wider but is not working
01.<legend><i class="fa fa-angle-right"></i>Available Appointments</legend>02. <asp:UpdatePanel ID="UpdatePanel1" runat="server">03. <ContentTemplate>04. <div>05. <legend>Calendar Layout</legend>06. <asp:RadioButtonList ID="rbDisplay" CellSpacing="5" AutoPostBack="true" RepeatDirection="Horizontal" runat="server">07. <asp:ListItem Value="1"> Verticle </asp:ListItem>08. <asp:ListItem Value="2"> Horizontal </asp:ListItem>09. </asp:RadioButtonList>10. </div>11. <telerik:RadScheduler OnTimeSlotCreated="apertureAppointments_TimeSlotCreated" OverflowBehavior="Auto" runat="server" WeekView-ShowDateHeaders="true" ID="apertureAppointments"12. TimelineView-UserSelectable="false" DayView-UserSelectable="true" AgendaView-UserSelectable="True" DataKeyField="ID" DataSubjectField="Subject" AllowInsert="false" AllowDelete="false" AllowEdit="false"13. DataStartField="Start" DataEndField="End" DataRecurrenceField="RecurrenceRule" DayView-EnableExactTimeRendering="true" WeekView-UserSelectable="True" SelectedView="WeekView"14. DataRecurrenceParentKeyField="RecurrenceParentID" DataSourceID="EntityDataSource1" StartInsertingInAdvancedForm="True" MonthView-UserSelectable="True" AgendaView-NumberOfDays="5" RowHeight="40px"15. RenderMode="Classic" EnableExactTimeRendering="True" Reminders-Enabled="true" Width="800px" Height="1000px" EnableDatePicker="false"16. DayStartTime="09:00:00" ShowFooter="false" DayEndTime="18:00" FirstDayOfWeek="Monday" LastDayOfWeek="Friday" HoursPanelTimeFormat="HH:mm tt" OnAppointmentClick="apertureAppointments_AppointmentClick" OnTimeSlotContextMenuItemClicking="apertureAppointments_TimeSlotContextMenuItemClicking"17. EnableDescriptionField="true" AppointmentStyleMode="Default" Skin="Metro">18. 19. <AdvancedForm Modal="True" />20. 21. <TimeSlotContextMenuSettings EnableDefault="false" />22. <AppointmentContextMenuSettings EnableDefault="false" />23. <DayView EnableExactTimeRendering="True" />24. <AdvancedForm Modal="true"></AdvancedForm>25. 26. <ResourceTypes>27. <telerik:ResourceType KeyField="lookup_code" Name="Managers" TextField="lookup_description" ForeignKeyField="managerId"28. DataSourceID="ManagersDataSource"></telerik:ResourceType>29. </ResourceTypes>30. <ResourceStyles>31. <%--AppointmentStyleMode must be explicitly set to Default (see above) otherwise setting BackColor/BorderColor32. will switch the appointments to Simple rendering (no rounded corners and gradients)--%>33. <telerik:ResourceStyleMapping Type="Managers" Text="Natalie Edgar"34. BackColor="#512479" ApplyCssClass="appointment" />35. <telerik:ResourceStyleMapping Type="Managers" Text="Clare Coyle"36. BackColor="#512479" ApplyCssClass="appointment" />37. <telerik:ResourceStyleMapping Type="Managers" Text="Christine Clarke"38. BackColor="#512479" ApplyCssClass="appointment" />39. <telerik:ResourceStyleMapping Type="Managers" Text="Adam Adair"40. BackColor="#512479" ApplyCssClass="appointment" />41. </ResourceStyles>42. </telerik:RadScheduler>43. </ContentTemplate>44.</asp:UpdatePanel>I just dont no what is wrong that is causing this corruption for when i look at your demos their fine in week view with horzontal grouping ?.
Regards