How to Customize Tooltip of calender
I want to customize a particular date's Tooltip. How it is possible ?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Alok UniyalPosted Oct 23, 2012, 12:27 AM
Try this
Use OnDayRender="Calendar1_DayRender" Event of Calender Control
Protected void Calendar1_DayRender(object sender, DayRenderEventArgs e)
{
if(Your Condition)
{
e.Cell.ToolTip = "Your tooltip";
}
}