New to Telerik UI for ASP.NET AJAX? Download free 30-day trial

Populating the Recurrence Rule

The recurrence editor can be populated from a RecurrenceRule object


var rrule = Telerik.Web.UI.RecurrenceRule.parse(appointment.get_recurrenceRule());
var editor = $find("RecurrenceEditor1");
editor.set_recurrenceRule(rrule);  

In this article