When hovering over a date in the kendo calendar, a tooltip appears showing the full date. The calendar generates the following HTML:
If I use a template, it gets inserted inside the anchor link which is still subject to the tooltip/title. Here's the code generated using a template:
I've tried to override the title by setting it to "" in my template but the browser just uses the outer title instead.
How can I disable the tooltip?
<td><a class="k-link" href="#" data-value="2012/7/14" title="Tuesday, August 14, 2012">14</a></td>If I use a template, it gets inserted inside the anchor link which is still subject to the tooltip/title. Here's the code generated using a template:
<td class=""><a class="k-link" href="#" data-value="2012/6/10" title="Tuesday, July 10, 2012"> <div title="" class="selectedDate">10</div></a></td>I've tried to override the title by setting it to "" in my template but the browser just uses the outer title instead.
How can I disable the tooltip?