 
	
		Hi Todd,
Thank you for reporting this behavior. As a workaround, we can reset the IsMouseDown property of the calendar cell in the ElementRender event handler:
private void radCalendar1_ElementRender(object sender, RenderElementEventArgs e)
{
    var mousePosition = radCalendar1.PointToClient(Control.MousePosition);
    if (e.Element != radCalendar1.ElementTree.GetElementAtPoint(mousePosition))
    {
        e.Element.IsMouseDown = false;
    }
}Regards,
 
Dinko | Tech Support Engineer
 Progress Telerik
    
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.
