
Class Name
-------------Everything chopped off below
Location
Time
Material
Thanks
8 Answers, 1 is accepted
Please check out our online example here.
Hope this helps.
Regards,
Yana
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.

Thanks for the response. I did review this example earlier which answered a lot of questions for me. However, I need to expand the vertical space between the AppointmentTemplate.
The AppointmentTemplate is designed to display the appointment information vertically as coded below. Only the first line and part of the second line display, the rest is cut off. How can I increase the height of the Appointment Template?
<
AppointmentTemplate>
<%
#Eval("Subject")%><br />
<%#Eval("Attributes['Location']")%><br />
<%# DateTime.Parse(Eval("Attributes['StartTime']").ToString()).ToString("t") %><br />
<%# DateTime.Parse(Eval("Attributes['EndTime']").ToString()).ToString("t") ><br />
<%#Eval("Attributes['ScheduleStatus']")%><br />
</
AppointmentTemplate>
Thanks for the clarification. With the AppointmentTemplate you don't have such great flexibility for customization as with the AdvancedEdit and AdvancedInsert templates. This is because the height of the appoitnment or the template for the appointment is determined by the duration of the appointment. I hope this makes sense.
If you have something different in mind or any suggestions for a workaround - we are open to discuss them.
All the best,
Peter
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.

I need to find a way to increase the vertical space for an All Day Appointment to show all the text being displayed. Right now it only allows a single horizontal line of text.
Right now I am forced to put everything on one single line like this:
Class: English Teacher: John Smith Room: 217
I desire to have the information listed like this:
Class: English
Teacher: John Smith
Room: 217
Is this possible,, or am I out of luck?
Thanks
For all day appointments, the following css styles will help you achieve your goal:
<style type="text/css"> |
.rsAllDayCell .rsWrap |
{ |
height: 100px !important; |
} |
.rsAllDayCell .rsLastSpacingWrapper |
{ |
height: 25px !important; |
} |
</style> |
Peter
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.

Is it possible to increase this height in the Month View to allow more information to be dispalyed there as well?
Wayne
The following KB articles will help you accomplish this:
How to tweak the appearance of RadScheduler's cells
How to set the appointment's height to accomodate the entire subject's text in Month View
Sincerely yours,
Peter
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
