This is a migrated thread and some comments may be shown as answers.

[Solved] Appointment height problem

1 Answer 154 Views
Scheduler
This is a migrated thread and some comments may be shown as answers.
sreedevi
Top achievements
Rank 1
sreedevi asked on 09 Apr 2008, 07:50 PM
I want to see the appointment times of the calendar in a short height. So I have used the following CSS to adjust the height of the appointments.

.RadScheduler_Outlook .rsDayView td.rsCell 
{
height: 15px ;
}

But when i did this I could see the heights of the appointment as decreased but the height between the times on the right side is same which makes it inconsistent. Is there anything else I have to do to make the appointments and time gap with same height?

1 Answer, 1 is accepted

Sort by
0
Dimitar Milushev
Telerik team
answered on 13 Apr 2008, 02:45 PM
Hi sreedevi,

You also need to set the height of the th elements in rsHoursTable. For example:

    <style type="text/css"
        .RadScheduler .rsContent .rsHoursTable th 
        { 
            height: 15px; 
        } 
         
        .RadScheduler .rsDayView td.rsCell  
        { 
            height: 15px; 
        }  
    </style> 

I hope this helps.

All the best,
Dimitar Milushev
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Scheduler
Asked by
sreedevi
Top achievements
Rank 1
Answers by
Dimitar Milushev
Telerik team
Share this question
or