I am using ASP.Net Ajax Q3 2009 SP1.
I have both the Subject and additional text in templates:
| <telerik:RadScheduler ID="rsc" runat="server" StartEditingInAdvancedForm="False" |
| DataEndField="End" DataKeyField="ID" DataStartField="Start" DataSubjectField="Subject" |
| OnClientAppointmentInserting="AppointmentInserting" OnClientAppointmentEditing="AppointmentEditing" |
| CustomAttributeNames="Notes,ProjectID,OutOfOffice,Flexitime,ParentFlag,ParentID" |
| EnableCustomAttributeEditing="True" |
| MonthVisibleAppointmentsPerDay="6" Height="100%" |
| Width="100%" DayHeaderDateFormat="dddd dd MMMM yyyy" Style="top: 0px; left: 0px" |
| ValidationGroup="RadScheduler1" HoursPanelTimeFormat="h mm tt" |
| EditFormDateFormat="dd/MM/yyyy" EditFormTimeFormat="HH:mm" |
| meta:resourcekey="rscResource1" SelectedDate="2010-01-06"> |
| <AdvancedForm EnableCustomAttributeEditing="True" /> |
| <Localization ConfirmDeleteText="Are you sure you want to delete this entry?" |
| ConfirmDeleteTitle="Confirm Delete" /> |
| <TimelineView NumberOfSlots="7" UserSelectable="False" /> |
| <DayView HeaderDateFormat="dddd dd MMMM yyyy" /> |
| <MonthView VisibleAppointmentsPerDay="6" /> |
| <AppointmentTemplate> |
| <div style="text-align: center"> |
| <%#Eval("Subject")%> |
| </div> |
| <hr /> |
| <%# Eval("Notes") %> |
| </AppointmentTemplate> |
| </telerik:RadScheduler> |
My customers are now complaining that long text in either fields does not word wrap but is split in the middle of words.
Is there anything I can do to implement word wrap within the template?
David Penny