Hi,
I'm new to a .NET web app project that is using a DatePicker to switch between report dates (also new to Telerik's products as well). Need to add a feature that highlights dates that have available reports.
My question is: How do I add a legend to the calendar that says something like "Highlighted dates have reports available" either above or below where today's date is displayed? When the calendar icon is clicked, the calendar drops down, but I can't seem to figure out how to put a legend/key on the calendar. As far as I can tell, here is the code generating the attached DatePicker:
- In a .cshtml file:
@model DateTime?
<
span
style
=
"width:6em"
>
@(Html.Kendo().DatePickerFor(m => m).Format("yyyy-MM-dd"))
</
span
>
- And the call in another .cshtml file:
<
td
>@Html.EditorFor(m => m.ProdDate)</
td
>
Thanks for the help.