From 06390a68692980a572f6a7474bbc6916dc97f2a5 Mon Sep 17 00:00:00 2001 From: Tsvetomir Hristov <106250052+Tsvetomir-Hr@users.noreply.github.com> Date: Tue, 22 Oct 2024 16:50:30 +0300 Subject: [PATCH 1/2] docs(Scheduler): article polish --- components/scheduler/views/agenda.md | 40 +++++++++++++++++++++++----- 1 file changed, 33 insertions(+), 7 deletions(-) diff --git a/components/scheduler/views/agenda.md b/components/scheduler/views/agenda.md index 7f0c8ca5bd..f9b521c9ca 100644 --- a/components/scheduler/views/agenda.md +++ b/components/scheduler/views/agenda.md @@ -1,7 +1,7 @@ --- title: Agenda page_title: Scheduler - Agenda View -description: Agenda View in the Scheduler for Blazor. +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. slug: scheduler-views-agenda tags: telerik,blazor,scheduler,view,agenda published: True @@ -10,7 +10,7 @@ position: 6 # Agenda View -The Agenda view of the Scheduler for Blazor shows a weekly summary (or a custom period set by the user) in a table format. +The Agenda view of the Scheduler for Blazor shows a weekly summary (or another custom period set by the user) in a table format. In this article: @@ -35,10 +35,14 @@ The following parameters allow you to configure the Agenda view: >caption Declare the Agenda view in the markup ````CSHTML -@* Define the Agenda view. *@ +@* Control the empty days visibility *@ + + +@* Define the Agenda view. *@ + @* Enable the Agenda view and use the 'HideEmptyAgendaDays' option to control whether days without appointments are shown in the Agenda view*@ @@ -72,18 +76,40 @@ The following parameters allow you to configure the Agenda view: End = new DateTime(2024, 10, 22, 15, 00, 0) }, new SchedulerAppointment + { + Title = "Weekly Team Meeting", + Description = "Discuss the project progress.", + Start = new DateTime(2024, 10, 23, 13, 30, 0), + End = new DateTime(2024, 10, 23, 14, 00, 0) + }, + new SchedulerAppointment + { + Title = "Security Training", + Description = "Security Training", + Start = new DateTime(2024, 10, 24, 10, 30, 0), + End = new DateTime(2024, 10, 24, 11, 30, 0) + }, + new SchedulerAppointment + { + Title = "Gym Workout", + Description = "Training", + Start = new DateTime(2024, 10, 24, 17, 00, 0), + End = new DateTime(2024, 10, 24, 18, 30, 0) + }, + new SchedulerAppointment { Title = "Team Outing", Description = "Lunch with the team.", - Start = new DateTime(2024, 10, 23, 12, 30, 0), - End = new DateTime(2024, 10, 23, 14, 00, 0) + Start = new DateTime(2024, 10, 25, 12, 30, 0), + End = new DateTime(2024, 10, 25, 14, 00, 0) }, new SchedulerAppointment { Title = "Webinar", Description = "Industry trends and insights.", - Start = new DateTime(2024, 10, 24, 16, 00, 0), - End = new DateTime(2024, 10, 24, 17, 30, 0) + Start = new DateTime(2024, 10, 28, 00, 00, 0), + End = new DateTime(2024, 10, 29, 00, 00, 0), + IsAllDay = true }, new SchedulerAppointment { From 79c700acc08f8b7ad9c1ccc438b1d0a2be4a593f Mon Sep 17 00:00:00 2001 From: Tsvetomir Hristov <106250052+Tsvetomir-Hr@users.noreply.github.com> Date: Mon, 28 Oct 2024 13:10:07 +0200 Subject: [PATCH 2/2] chore(Scheduler): remove unnecessery comments --- components/scheduler/views/agenda.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/scheduler/views/agenda.md b/components/scheduler/views/agenda.md index f9b521c9ca..18db522493 100644 --- a/components/scheduler/views/agenda.md +++ b/components/scheduler/views/agenda.md @@ -35,11 +35,9 @@ The following parameters allow you to configure the Agenda view: >caption Declare the Agenda view in the markup ````CSHTML -@* Control the empty days visibility *@ -@* Define the Agenda view. *@ @* Enable the Agenda view and use the 'HideEmptyAgendaDays' option to control whether days without appointments are shown in the Agenda view*@