Skip to content

Commit 538e745

Browse files
committed
docs(Scheduler): article polish
1 parent 4b492aa commit 538e745

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

components/scheduler/views/agenda.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Agenda
33
page_title: Scheduler - Agenda View
4-
description: Agenda View in the Scheduler for Blazor.
4+
description: The Agenda view in the Scheduler for Blazor shows a weekly summary or a user-defined custom period in a table format, providing a clear event overview.
55
slug: scheduler-views-agenda
66
tags: telerik,blazor,scheduler,view,agenda
77
published: True
@@ -10,7 +10,7 @@ position: 6
1010

1111
# Agenda View
1212

13-
The Agenda view of the Scheduler for Blazor shows a weekly summary (or a custom period set by the user) in a table format.
13+
The Agenda view of the Scheduler for Blazor shows a weekly summary (or another custom period set by the user) in a table format.
1414

1515
In this article:
1616

@@ -39,15 +39,18 @@ The following parameters allow you to configure the Agenda view:
3939
4040
<TelerikScheduler Data="@Appointments" @bind-Date="@StartDate" Width="800px">
4141
<SchedulerViews>
42+
@* Step 1: Enable the Agenda view in the Scheduler *@
4243
<SchedulerAgendaView HideEmptyAgendaDays="@HideEmptyDays" />
44+
@* Step 2: The 'HideEmptyAgendaDays' option determines whether days with no appointments are shown in the Agenda view *@
4345
</SchedulerViews>
4446
</TelerikScheduler>
4547
4648
@code {
4749
private DateTime StartDate { get; set; } = new DateTime(2024, 10, 22);
4850
4951
private bool HideEmptyDays { get; set; }
50-
52+
53+
// Step 2: The 'HideEmptyAgendaDays' option determines whether days with no appointments are shown in the Agenda view
5154
private List<SchedulerAppointment> Appointments = new List<SchedulerAppointment>()
5255
{
5356
new SchedulerAppointment

0 commit comments

Comments
 (0)