Hi,
We received a few other complaints about this issue and it seems that this is a new issue with IE8. We had similar problems in IE7, but they were easily fixed by applying "zoom: 1" style on RadScheduler. It looks like this workaround no longer works in IE8, but you can give it a try:
<style type="text/css">
.RadScheduler { zoom: 1; }
</style>
If this indeed doesn't help, you can include the following script on your page:
<script type="text/javascript">
Sys.Application.add_load(function() {
if(!$telerik.isIE8)
return;
var schedulerElement = $find('<%= RadScheduler1.ClientID %>').get_element();
schedulerElement.style.cssText = schedulerElement.style.cssText;
var $ = $telerik.$;
$(".rsMonthView td", schedulerElement).each(function() {
this.style.cssText = this.style.cssText;
});
});
</script>
Let us know if this helps.
All the best,
Tsvetomir Tsonev
the Telerik team