This issue can be duplcated on your RadScheduler demo site:
http://demos.telerik.com/aspnet-ajax/scheduler/examples/customization/defaultcs.aspx
Add at least 11 All Day appointments to calendar in either Daily or Week view. The hourly content section begins shrinking. At around 12 or 13 appopintments, the scroll bars and hourly content section shrink to virtual unusability, and eventually disappear entirely.
I have tried 2 different solutions via CSS:
1)
Modifying rsInnerFix fixes the height of the All Day area to 60px, and provide scroll bars, BUT the scroll bar appears INSIDE the space allocated for the days, causing the Mon/Tue/Wed/etc. columns to be misaligned.
div.rsInnerFix
{
overflow-x: hidden !important;
overflow-y: auto !important;
min-height: 0px !important;
max-height: 60px !important;
}
2)
Modifying rsTopWrap provides a scroll bar for the entire calendar, however, the scroll bar doesn't take effect until the number of All Day appoinments forces the Hourly section to it's very narrowest. Adding one more All Day apointment then seems to expand the entire hourly section, removing it's own scroll bar in favor of the rsTopWrap div's scroll bar.
Do you have any code or CSS solution that will allow the All Day section to scroll gracefully? Any solution needs to apply to the 2009 Q3 release, as customer constraints preclude an upgrade prior to their next major release/dev cycle.
div.rsTopWrap
{
overflow-x: hidden !important;
overflow-y: auto !important;
min-height: 0px !important;
max-height: 100% !important;
}
Thanks in advance for your time,
-Kevin
http://demos.telerik.com/aspnet-ajax/scheduler/examples/customization/defaultcs.aspx
Add at least 11 All Day appointments to calendar in either Daily or Week view. The hourly content section begins shrinking. At around 12 or 13 appopintments, the scroll bars and hourly content section shrink to virtual unusability, and eventually disappear entirely.
I have tried 2 different solutions via CSS:
1)
Modifying rsInnerFix fixes the height of the All Day area to 60px, and provide scroll bars, BUT the scroll bar appears INSIDE the space allocated for the days, causing the Mon/Tue/Wed/etc. columns to be misaligned.
div.rsInnerFix
{
overflow-x: hidden !important;
overflow-y: auto !important;
min-height: 0px !important;
max-height: 60px !important;
}
2)
Modifying rsTopWrap provides a scroll bar for the entire calendar, however, the scroll bar doesn't take effect until the number of All Day appoinments forces the Hourly section to it's very narrowest. Adding one more All Day apointment then seems to expand the entire hourly section, removing it's own scroll bar in favor of the rsTopWrap div's scroll bar.
Do you have any code or CSS solution that will allow the All Day section to scroll gracefully? Any solution needs to apply to the 2009 Q3 release, as customer constraints preclude an upgrade prior to their next major release/dev cycle.
div.rsTopWrap
{
overflow-x: hidden !important;
overflow-y: auto !important;
min-height: 0px !important;
max-height: 100% !important;
}
Thanks in advance for your time,
-Kevin