с их сайта:
http://demos.telerik.com/aspnet-ajax/calendar/examples/programming/clientsideapi/defaultcs.aspx
unselectDate(date); //Takes a triplet representation of a date and if valid deselects it in the calendar.
unselectDates(dates); //Takes an array of triplets representing dates and if valid deselects them in the calendar.
Сначала вы можете узнать, какие даты выбраны с помощью get_selectedDates ()
Затем поместите их в метод отмены выбора.
var selectedDates = get_selectedDates();
unselectDates(selectedDates);
Если вы не знаете, какие даты выбраны, возможно, вы можете перезагрузить календарь.