I have the same problem, but when I apply css nothing happened in my case.
In my code
Eval("Subject") generated dynamically and contains hyperlink.
<AppointmentTemplate>
<%# Eval("Subject") %>
</AppointmentTemplate>
Each appointment should have 3 lines which I have to display. But this css doesn't work. I have MonthlyView scheduler.
.RadScheduler .rsAllDayCell div.rsWrap |
{ |
height:40px; |
} |
|
.RadScheduler .rsHoursTable th.rsSubHeaderHidden |
{ |
height:40px; |
} |
|
.RadScheduler .rsHoursTable tr th.rsSubHeaderLast |
{ |
height:41px; |
|
I always found another code:
.rsMonthView .rsWrap
{
height: 50px !important;
}
.rsMonthView .rsDateWrap
{
height: 24px !important;
}
.rsMonthView .rsLastWrap
{
height: 24px !important;
}
.rsMonthView .rsApt
{
height: 48px !important;
}
.RadScheduler_Default
{
height:150px !important;
}
This code only increase space between appointments, but not increase height of the the appointment in IE8.
In FireFox second css looks good.
We need some resolution for IE.
Thanks for help,
Paul