One very common issue that we’ve addressed in the Q3 release is the lack of a description field for the appointments. Until now you had to customize the advanced template in order to get one, but not any more.

How to enable the integrated description field:
- Data Source - set DataDescriptionField to the corresponding column in your database:
<telerik:RadScheduler runat="server" ID="RadScheduler1" DataSourceID="AppointmentsDataSource" DataKeyField="ID" DataSubjectField="Subject" DataDescriptionField="Description" DataStartField="Start" DataEndField="End" DataRecurrenceField="RecurrenceRule" DataRecurrenceParentKeyField="RecurrenceParentID">
...
</telerik:RadScheduler>
- Provider – set EnableDescriptionField to “true” and persist the Appointment.Description value in your provider.
<telerik:RadScheduler runat="server" ID="RadScheduler1" ProviderName="XmlSchedulerProvider" EnableDescriptionField="true" >
...
</telerik:RadScheduler>
This is all you need for editing and storing the description, but what about showing it? A simple appointment template will do:
<AppointmentTemplate> <div> <%#...