Hi Dimo.
1) I managed to get the today class working, but I still needed to add some more definitions to the stylesheet.
Consider this scenario:
<specialdays> |
<telerik:radcalendarday repeatable="Today" date=""> |
<ItemStyle CssClass="radCalToday_D10Ruby1" ForeColor="red" /> |
</telerik:radcalendarday> |
</specialdays> |
and
.radCalToday_D10Ruby1 |
{ |
color: red !Important; |
border: solid 1px #fff; |
background: #f0f0f0 |
} |
renders like this
<td class="radCalDefault_D10Ruby1 radCalToday_D10Ruby1" title="mánudagur, ágúst 04, 2008" style="color:Red;"><a href="#" onclick="return false;" >4</a></td> |
so the border and background definitions are applied, but not the font-color, not even after you add the forecolor definition to the special day template.
Once you add
.radCalToday_D10Ruby1 a |
{ |
color: Red; |
} |
we are back in business.
2) I don't mind the current setup that much, apart from the fact that you cannot hover images for the nav and fastnav buttons. It's still not ideal if you are creating skins that don't use images with default names or if they aren't gif images. But good to know you are bringing the calendars behaviour towards the other controls.
3) These classes are applied automatically as far as I can tell, all you have to do is create the hover images, make sure they are gif files and named correctly.
P.S. Are you planning to make the calendar databindable?
Regards,
-DJ-