11---
22title : Recurrence
33page_title : Scheduler Recurrence
4- description : Overview of the Scheduler for Blazor.
4+ description : Learn how to set up the Telerik Scheduler for Blazor to display and edit recurring appointments .
55slug : scheduler-recurrence
66tags : telerik, blazor, scheduler, recurrence
77published : True
@@ -149,7 +149,7 @@ A single Scheduler data item defines one series of recurring appointments. Set t
149149 };
150150 SchedulerData.Add(dailyLunch);
151151
152- // Create exceptions to the base appointment
152+ // Create exceptions to the base appointment.
153153 int daysSinceMonday = SchedulerDate.DayOfWeek - DayOfWeek.Monday;
154154 DateTime lastMonday = DateTime.SpecifyKind(SchedulerDate.AddDays(-daysSinceMonday), DateTimeKind.Unspecified);
155155
@@ -172,7 +172,7 @@ A single Scheduler data item defines one series of recurring appointments. Set t
172172 };
173173 SchedulerData.Add(earlyLunchException);
174174
175- // Relate the exceptions to the base appointment
175+ // Relate the exceptions to the base appointment.
176176 DateTime lateLunchOriginalStart = DateTime.SpecifyKind(lastMonday.AddHours(12), DateTimeKind.Unspecified);
177177 DateTime earlyLunchOriginalStart = DateTime.SpecifyKind(lastMonday.AddDays(3).AddHours(12), DateTimeKind.Unspecified);
178178 dailyLunch.RecurrenceExceptions = new List<DateTime>()
@@ -335,7 +335,7 @@ The following examples can serve as a reference for creating [custom Telerik Sch
335335
336336 private void OnFormUpdate()
337337 {
338- // Only necessary to refresh the UI until all Rule parameters gain two-way binding
338+ // Only necessary to refresh the UI until all Rule parameters gain two-way binding.
339339 RecurringAppointment!.RecurrenceRule = Rule?.ToString() ?? string.Empty;
340340 }
341341
0 commit comments