From 748391aa88a331a6fecf4e8dea51121eafa49e3d Mon Sep 17 00:00:00 2001 From: Tsvetomir Hristov <106250052+Tsvetomir-Hr@users.noreply.github.com> Date: Tue, 15 Oct 2024 16:59:16 +0300 Subject: [PATCH 1/3] docs(Scheduler): add Agenda view documentation article --- components/scheduler/resource-grouping.md | 7 -- components/scheduler/views/agenda.md | 115 ++++++++++++++++++++++ components/scheduler/views/day.md | 12 +-- components/scheduler/views/month.md | 12 +-- components/scheduler/views/multiday.md | 17 +--- components/scheduler/views/overview.md | 3 +- components/scheduler/views/timeline.md | 15 +-- components/scheduler/views/week.md | 15 +-- 8 files changed, 134 insertions(+), 62 deletions(-) create mode 100644 components/scheduler/views/agenda.md diff --git a/components/scheduler/resource-grouping.md b/components/scheduler/resource-grouping.md index 8c9ef59078..d53aa5f72a 100644 --- a/components/scheduler/resource-grouping.md +++ b/components/scheduler/resource-grouping.md @@ -35,13 +35,6 @@ The settings tag will have the following Parameters: * `Resources(List)` - provides a list of one or more resource names, which will be used to group the events. * `Orientation(SchedulerGroupOrientation)` - has two values: `Horizontal` (default) and `Vertical`. Determines the direction in which the resource tables are rendered. -For more information on grouping by resources in each view, refer to the following sections: - -* [**Day** view grouping]({%slug scheduler-views-day%}#resource-grouping-in-the-day-view) -* [**MultiDay** view grouping]({%slug scheduler-views-multiday%}#resource-grouping-in-the-multiday-view) -* [**Week** view grouping]({%slug scheduler-views-week%}#resource-grouping-in-the-week-view) -* [**Month** view grouping]({%slug scheduler-views-month%}#resource-grouping-in-the-month-view) - ## Examples The examples below showcase [resource grouping by one resource](#resource-grouping-by-one-resource) and [resource grouping by multiple resources](#resource-grouping-by-multiple-resources) respectively. diff --git a/components/scheduler/views/agenda.md b/components/scheduler/views/agenda.md new file mode 100644 index 0000000000..df430d61cf --- /dev/null +++ b/components/scheduler/views/agenda.md @@ -0,0 +1,115 @@ +--- +title: Agenda +page_title: Scheduler - Agenda View +description: Agenda View in the Scheduler for Blazor. +slug: scheduler-views-agenda +tags: telerik,blazor,scheduler,view,agenda +published: True +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. Also the Agenda view can be configured to display the events that are [grouped by resource]({%slug scheduler-resource-grouping%}) + + +In this article: + +* [View Parameters](#view-parameters) +* [Example](#example) + +## View Parameters + +The following parameters allow you to configure the agenda view: + +@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout) + +| Attribute | Type and Default Value | Description | +| --- | --- | --- | +| `NumberOfDays` | `int`
(`7 (a week)`) | Represents the number of days shown in the view. | +| `HideEmptyAgendaDays` | `bool`
(`true`) | Defines whether dates with no appointments are rendered. | + +## Example + +>caption Declare the Agenda View in the markup + +>tip You can declare other views as well, this example adds only the Agenda view for brevity. + +````CSHTML +@* Define the agenda view. *@ + + + + + + + +@code { + private DateTime StartDate { get; set; } = new DateTime(2024, 10, 22); + + private bool HideEmptyDays { get; set; } + + private List Appointments = new List() +{ + new SchedulerAppointment + { + Title = "Team Meeting", + Description = "Discuss the project progress.", + Start = new DateTime(2024, 10, 14, 10, 00, 0), + End = new DateTime(2024, 10, 14, 11, 00, 0) + }, + new SchedulerAppointment + { + Title = "Doctor Appointment", + Description = "Routine check-up.", + Start = new DateTime(2024, 10, 16, 9, 30, 0), + End = new DateTime(2024, 10, 16, 10, 00, 0) + }, + new SchedulerAppointment + { + Title = "Client Call", + Description = "Quarterly review with the client.", + Start = new DateTime(2024, 10, 22, 14, 00, 0), + End = new DateTime(2024, 10, 22, 15, 00, 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) + }, + 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) + }, + new SchedulerAppointment + { + Title = "Project Deadline", + Description = "Final submission of deliverables.", + Start = new DateTime(2024, 10, 29, 9, 00, 0), + End = new DateTime(2024, 10, 29, 12, 00, 0) + } +}; + + public class SchedulerAppointment + { + public string Title { get; set; } + public string Description { get; set; } + public DateTime Start { get; set; } + public DateTime End { get; set; } + public bool IsAllDay { get; set; } + } +} +```` + +## See Also + +* [Views]({%slug scheduler-views-overview%}) +* [Navigation]({%slug scheduler-navigation%}) +* [Live Demo: Scheduler Agenda View](https://demos.telerik.com/blazor-ui/scheduler/agenda-view) +* [Resource Grouping Example]({%slug scheduler-resource-grouping%}#resource-grouping-by-one-resource) + diff --git a/components/scheduler/views/day.md b/components/scheduler/views/day.md index 9ce75e8876..3be5f8f589 100644 --- a/components/scheduler/views/day.md +++ b/components/scheduler/views/day.md @@ -10,7 +10,7 @@ position: 1 # Day View -The Day view of the Scheduler for Blazor shows a single day to the user. +The Agenda view of the Scheduler for Blazor shows a weekly summary (or a custom period set by the user) in a table format. Also the Day view can be configured to display the events that are [grouped by resource]({%slug scheduler-resource-grouping%}). The `Date` parameter of the scheduler controls which date is displayed. @@ -19,7 +19,6 @@ In this article: * [View Parameters](#view-parameters) * [Slots](#slots) * [Example](#example) -* [Resource Grouping](#resource-grouping-in-the-day-view) @[template](/_contentTemplates/scheduler/views.md#day-views-common-properties) @@ -96,16 +95,9 @@ In this article: } ```` -## Resource Grouping in the Day View - -You can configure the Day view to display events that are [grouped by a resource]({%slug scheduler-resource-grouping%}). - ->caption Resource Grouping in a Day view. - -@[template](/_contentTemplates/scheduler/views.md#resource-grouping-code-snippet-for-examples) - ## See Also * [Views]({%slug scheduler-views-overview%}) * [Navigation]({%slug scheduler-navigation%}) * [Live Demo: Scheduler Day View](https://demos.telerik.com/blazor-ui/scheduler/day-view) +* [Resource Grouping Example]({%slug scheduler-resource-grouping%}#resource-grouping-by-one-resource) diff --git a/components/scheduler/views/month.md b/components/scheduler/views/month.md index 0776aa3f34..cbb55d3cf4 100644 --- a/components/scheduler/views/month.md +++ b/components/scheduler/views/month.md @@ -10,7 +10,7 @@ position: 4 # Month View -The Month view of the Scheduler for Blazor shows an entire month to the user. +The Month view of the Scheduler for Blazor shows an entire month to the user. Also the Month view can be configured to display the events that are [grouped by resource]({%slug scheduler-resource-grouping%}). The `Date` parameter of the Scheduler controls which month is displayed. It's the one containing the date. @@ -19,7 +19,6 @@ In this article: * [View Parameters](#view-parameters) * [Example](#example) -* [Resource Grouping](#resource-grouping-in-the-month-view) ## View Parameters @@ -140,16 +139,9 @@ If the `ItemsPerSlot` parameter is a zero or a negative value, an `ArgumentOutOf } ```` -## Resource Grouping in the Month View - -You can configure the Month view to display appointments that are [grouped by a resource]({%slug scheduler-resource-grouping%}). - ->caption Resource Grouping in a Month view. - -@[template](/_contentTemplates/scheduler/views.md#resource-grouping-code-snippet-for-examples) - ## See Also * [Views]({%slug scheduler-views-overview%}) * [Navigation]({%slug scheduler-navigation%}) * [Live Demo: Scheduler Month View](https://demos.telerik.com/blazor-ui/scheduler/month-view) +* [Resource Grouping Example]({%slug scheduler-resource-grouping%}#resource-grouping-by-one-resource) diff --git a/components/scheduler/views/multiday.md b/components/scheduler/views/multiday.md index b76cf12d9d..0049703386 100644 --- a/components/scheduler/views/multiday.md +++ b/components/scheduler/views/multiday.md @@ -5,21 +5,20 @@ description: MultiDay View in the Scheduler for Blazor. slug: scheduler-views-multiday tags: telerik,blazor,scheduler,view,multiday published: True -position: 2 +position: 3 --- # MultiDay View -The MultiDay view of the Scheduler for Blazor shows several days at once to the user. +The MultiDay view of the Scheduler for Blazor shows several days at once to the user. Also the MultiDay view can be configured to display the events that are [grouped by resource]({%slug scheduler-resource-grouping%}). -The `Date` parameter of the scheduler controls which is the first rendered date, and the `NumberOfDays` parameter of the View controls how many days will be rendered. +The `Date` parameter of the scheduler controls which is the first rendered date, and the `NumberOfDays` parameter of the View controls how many days will be rendered. In this article: * [View Parameters](#view-parameters) * [Slots](#slots) * [Example](#example) -* [Resource Grouping](#resource-grouping-in-the-multiday-view) @[template](/_contentTemplates/scheduler/views.md#day-views-common-properties) * `NumberOfDays` - how many days will be rendered side-by-side in the view. @@ -98,16 +97,10 @@ In this article: } ```` -## Resource Grouping in the MultiDay View - -You can configure the MultiDay view to display events that are [grouped by a resource]({%slug scheduler-resource-grouping%}). - ->caption Resource Grouping in a MultiDay view. - -@[template](/_contentTemplates/scheduler/views.md#resource-grouping-code-snippet-for-examples) - ## See Also * [Views]({%slug scheduler-views-overview%}) * [Navigation]({%slug scheduler-navigation%}) * [Live Demo: Scheduler MultiDay View](https://demos.telerik.com/blazor-ui/scheduler/multiday-view) +* [Resource Grouping Example]({%slug scheduler-resource-grouping%}#resource-grouping-by-one-resource) + diff --git a/components/scheduler/views/overview.md b/components/scheduler/views/overview.md index d19f4258a8..2f797bf9b6 100644 --- a/components/scheduler/views/overview.md +++ b/components/scheduler/views/overview.md @@ -21,10 +21,11 @@ You can read more about this in the [Navigation]({%slug scheduler-navigation%}) The available views are: * [Scheduler**Day**View]({%slug scheduler-views-day%}) -* [Scheduler**MultiDay**View]({%slug scheduler-views-multiday%}) * [Scheduler**Week**View]({%slug scheduler-views-week%}) +* [Scheduler**MultiDay**View]({%slug scheduler-views-multiday%}) * [Scheduler**Month**View]({%slug scheduler-views-month%}) * [Scheduler**Timeline**View]({%slug scheduler-views-timeline%}) +* [Scheduler**Agenda**View]({%slug scheduler-views-agenda%}) >caption Allow the user to navigate between Day and Week views only by defining only them. Example how to choose starting View (Week) and Date (29 Nov 2019). diff --git a/components/scheduler/views/timeline.md b/components/scheduler/views/timeline.md index 78937db15b..d0629f8748 100644 --- a/components/scheduler/views/timeline.md +++ b/components/scheduler/views/timeline.md @@ -5,19 +5,18 @@ description: Timeline View in the Scheduler for Blazor. slug: scheduler-views-timeline tags: telerik,blazor,scheduler,view,timeline published: True -position: 1 +position: 5 --- # Timeline View -The Timeline view displays appointments in a continuous horizontal direction. +The Timeline view displays appointments in a continuous horizontal direction. Also the Timeline view can be configured to display the events that are [grouped by resource]({%slug scheduler-resource-grouping%}) In this article: * [View Parameters](#view-parameters) * [Slots](#slots) * [Example](#example) -* [Resource Grouping](#resource-grouping-in-the-timeline-view) @[template](/_contentTemplates/scheduler/views.md#day-views-common-properties) | `ColumnWidth` | `decimal` | The width of each time column in pixels. @@ -98,16 +97,10 @@ In this article: } ```` -## Resource Grouping in the Timeline View - -You can configure the Timeline view to display events that are [grouped by a resource]({%slug scheduler-resource-grouping%}). - ->caption Resource Grouping in a Timeline view. - -@[template](/_contentTemplates/scheduler/views.md#resource-grouping-vertical-code-snippet-for-examples) - ## See Also * [Views]({%slug scheduler-views-overview%}) * [Navigation]({%slug scheduler-navigation%}) * [Live Demo: Scheduler Timeline View](https://demos.telerik.com/blazor-ui/scheduler/timeline-view) +* [Resource Grouping Example]({%slug scheduler-resource-grouping%}#resource-grouping-by-one-resource) + diff --git a/components/scheduler/views/week.md b/components/scheduler/views/week.md index ba5c053d80..26e61d8399 100644 --- a/components/scheduler/views/week.md +++ b/components/scheduler/views/week.md @@ -5,12 +5,12 @@ description: Week View in the Scheduler for Blazor. slug: scheduler-views-week tags: telerik,blazor,scheduler,view,week published: True -position: 3 +position: 2 --- # Week View -The Week view of the scheduler shows the entire week to the user. +The Week view of the scheduler shows the entire week to the user. Also the Week view can be configured to display the events that are [grouped by resource]({%slug scheduler-resource-grouping%}) The `Date` parameter of the scheduler controls which week is displayed. The first day depends on the current culture's `FirstDayOfWeek`. @@ -19,7 +19,6 @@ In this article: * [View Parameters](#view-parameters) * [Slots](#slots) * [Example](#example) -* [Resource Grouping](#resource-grouping-in-the-week-view) @[template](/_contentTemplates/scheduler/views.md#day-views-common-properties) @@ -96,16 +95,10 @@ In this article: } ```` -## Resource Grouping in the Week View - -You can configure the Week view to display events that are [grouped by a resource]({%slug scheduler-resource-grouping%}). - ->caption Resource Grouping in a Week view. - -@[template](/_contentTemplates/scheduler/views.md#resource-grouping-code-snippet-for-examples) - ## See Also * [Views]({%slug scheduler-views-overview%}) * [Navigation]({%slug scheduler-navigation%}) * [Live Demo: Scheduler Week View](https://demos.telerik.com/blazor-ui/scheduler/week-view) +* [Resource Grouping Example]({%slug scheduler-resource-grouping%}#resource-grouping-by-one-resource) + From 337cbb862e34522edb57b7b92863f06a6bf1097a Mon Sep 17 00:00:00 2001 From: Tsvetomir Hristov <106250052+Tsvetomir-Hr@users.noreply.github.com> Date: Thu, 17 Oct 2024 10:34:33 +0300 Subject: [PATCH 2/3] docs(Scheduler): apply requested changes --- components/scheduler/views/agenda.md | 10 +++++----- components/scheduler/views/day.md | 8 ++++---- components/scheduler/views/month.md | 6 +++--- components/scheduler/views/multiday.md | 11 +++++------ components/scheduler/views/timeline.md | 6 +++--- components/scheduler/views/week.md | 8 ++++---- 6 files changed, 24 insertions(+), 25 deletions(-) diff --git a/components/scheduler/views/agenda.md b/components/scheduler/views/agenda.md index df430d61cf..d13d01f6bb 100644 --- a/components/scheduler/views/agenda.md +++ b/components/scheduler/views/agenda.md @@ -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. Also the Agenda view can be configured to display the events that are [grouped by resource]({%slug scheduler-resource-grouping%}) +The Agenda view of the Scheduler for Blazor shows a weekly summary (or a custom period set by the user) in a table format. You can also configure the Agenda view to display events [grouped by resource]({%slug scheduler-resource-grouping%}). In this article: @@ -20,7 +20,7 @@ In this article: ## View Parameters -The following parameters allow you to configure the agenda view: +The following parameters allow you to configure the Agenda view: @[template](/_contentTemplates/common/parameters-table-styles.md#table-layout) @@ -31,12 +31,12 @@ The following parameters allow you to configure the agenda view: ## Example ->caption Declare the Agenda View in the markup - >tip You can declare other views as well, this example adds only the Agenda view for brevity. +>caption Declare the Agenda view in the markup + ````CSHTML -@* Define the agenda view. *@ +@* Define the Agenda view. *@ diff --git a/components/scheduler/views/day.md b/components/scheduler/views/day.md index 3be5f8f589..668ddad6a9 100644 --- a/components/scheduler/views/day.md +++ b/components/scheduler/views/day.md @@ -10,7 +10,7 @@ position: 1 # Day 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. Also the Day view can be configured to display the events that are [grouped by resource]({%slug scheduler-resource-grouping%}). +The Day view of the Scheduler for Blazor shows a single day to the user. You can also configure the Day view to display events [grouped by resource]({%slug scheduler-resource-grouping%}). The `Date` parameter of the scheduler controls which date is displayed. @@ -28,12 +28,12 @@ In this article: ## Example ->caption Declare the Day View in the markup +>tip You can declare other views as well, this example adds only the Day view for brevity. ->tip You can declare other views as well, this example adds only the day view for brevity. +>caption Declare the Day view in the markup ````CSHTML -@* Define the day view. *@ +@* Define the Day view. *@ diff --git a/components/scheduler/views/month.md b/components/scheduler/views/month.md index cbb55d3cf4..03a1aecfb3 100644 --- a/components/scheduler/views/month.md +++ b/components/scheduler/views/month.md @@ -10,7 +10,7 @@ position: 4 # Month View -The Month view of the Scheduler for Blazor shows an entire month to the user. Also the Month view can be configured to display the events that are [grouped by resource]({%slug scheduler-resource-grouping%}). +The Month view of the Scheduler for Blazor shows an entire month to the user. You can also configure the Month view to display events [grouped by resource]({%slug scheduler-resource-grouping%}). The `Date` parameter of the Scheduler controls which month is displayed. It's the one containing the date. @@ -37,9 +37,9 @@ If the `ItemsPerSlot` parameter is a zero or a negative value, an `ArgumentOutOf ## Example ->caption Declare the Month and Day Views in the markup +>tip You can declare other views as well, this example adds only the Month and Day views for brevity. ->tip You can declare other views as well, this example adds only the month and day views for brevity. +>caption Declare the Month and Day views in the markup ````CSHTML @* Define the month view. *@ diff --git a/components/scheduler/views/multiday.md b/components/scheduler/views/multiday.md index 0049703386..e758c31f13 100644 --- a/components/scheduler/views/multiday.md +++ b/components/scheduler/views/multiday.md @@ -10,9 +10,9 @@ position: 3 # MultiDay View -The MultiDay view of the Scheduler for Blazor shows several days at once to the user. Also the MultiDay view can be configured to display the events that are [grouped by resource]({%slug scheduler-resource-grouping%}). +The MultiDay view of the Scheduler for Blazor shows several days at once to the user. You can also configure the MultiDay view to display events [grouped by resource]({%slug scheduler-resource-grouping%}). -The `Date` parameter of the scheduler controls which is the first rendered date, and the `NumberOfDays` parameter of the View controls how many days will be rendered. +The `Date` parameter of the Scheduler controls which is the first rendered date, and the `NumberOfDays` parameter of the View controls how many days will be rendered. In this article: @@ -29,13 +29,12 @@ In this article: ## Example ->caption Declare the MultiDay View in the markup - ->tip You can declare other views as well, this example adds only the multiday view for brevity. +>tip You can declare other views as well, this example adds only the Multiday view for brevity. +>caption Declare the MultiDay view in the markup ````CSHTML -@* Define the multiday view. *@ +@* Define the Multiday view. *@ diff --git a/components/scheduler/views/timeline.md b/components/scheduler/views/timeline.md index d0629f8748..6ccd34e4d3 100644 --- a/components/scheduler/views/timeline.md +++ b/components/scheduler/views/timeline.md @@ -10,7 +10,7 @@ position: 5 # Timeline View -The Timeline view displays appointments in a continuous horizontal direction. Also the Timeline view can be configured to display the events that are [grouped by resource]({%slug scheduler-resource-grouping%}) +The Timeline view displays appointments in a continuous horizontal direction. You can also configure the Timeline view to display events [grouped by resource]({%slug scheduler-resource-grouping%}). In this article: @@ -28,10 +28,10 @@ In this article: ## Example ->caption Declare the Timeline View in the markup - >tip You can declare other views as well, this example adds only the timeline view for brevity. +>caption Declare the Timeline view in the markup + ````CSHTML @* Define the Timeline view. *@ diff --git a/components/scheduler/views/week.md b/components/scheduler/views/week.md index 26e61d8399..7d28868eff 100644 --- a/components/scheduler/views/week.md +++ b/components/scheduler/views/week.md @@ -10,7 +10,7 @@ position: 2 # Week View -The Week view of the scheduler shows the entire week to the user. Also the Week view can be configured to display the events that are [grouped by resource]({%slug scheduler-resource-grouping%}) +The Week view of the Scheduler shows the entire week to the user. You can also configure the Week view to display events [grouped by resource]({%slug scheduler-resource-grouping%}). The `Date` parameter of the scheduler controls which week is displayed. The first day depends on the current culture's `FirstDayOfWeek`. @@ -28,12 +28,12 @@ In this article: ## Example ->caption Declare the Week View in the markup - >tip You can declare other views as well, this example adds only the week view for brevity. +>caption Declare the Week view in the markup + ````CSHTML -@* Define the week view. *@ +@* Define the Week view. *@ From 4389e56da17c8ad2ff5ef4ec5e9b2f24f3389e88 Mon Sep 17 00:00:00 2001 From: Tsvetomir Hristov <106250052+Tsvetomir-Hr@users.noreply.github.com> Date: Mon, 21 Oct 2024 13:49:44 +0300 Subject: [PATCH 3/3] docs(Scheduler): apply recommendations --- _contentTemplates/scheduler/views.md | 1 + components/scheduler/resource-grouping.md | 1 + components/scheduler/views/agenda.md | 7 +++---- components/scheduler/views/day.md | 4 ++-- components/scheduler/views/month.md | 6 +++--- components/scheduler/views/multiday.md | 4 ++-- components/scheduler/views/timeline.md | 6 +++--- components/scheduler/views/week.md | 6 +++--- 8 files changed, 18 insertions(+), 17 deletions(-) diff --git a/_contentTemplates/scheduler/views.md b/_contentTemplates/scheduler/views.md index bc9106edda..ab4525aac6 100644 --- a/_contentTemplates/scheduler/views.md +++ b/_contentTemplates/scheduler/views.md @@ -556,6 +556,7 @@ public class Appointment + diff --git a/components/scheduler/resource-grouping.md b/components/scheduler/resource-grouping.md index d53aa5f72a..a6c7e4af52 100644 --- a/components/scheduler/resource-grouping.md +++ b/components/scheduler/resource-grouping.md @@ -73,6 +73,7 @@ The examples below showcase [resource grouping by one resource](#resource-groupi + diff --git a/components/scheduler/views/agenda.md b/components/scheduler/views/agenda.md index d13d01f6bb..7f0c8ca5bd 100644 --- a/components/scheduler/views/agenda.md +++ b/components/scheduler/views/agenda.md @@ -10,8 +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. You can also configure the Agenda view to display events [grouped by resource]({%slug scheduler-resource-grouping%}). - +The Agenda view of the Scheduler for Blazor shows a weekly summary (or a custom period set by the user) in a table format. In this article: @@ -26,7 +25,7 @@ The following parameters allow you to configure the Agenda view: | Attribute | Type and Default Value | Description | | --- | --- | --- | -| `NumberOfDays` | `int`
(`7 (a week)`) | Represents the number of days shown in the view. | +| `NumberOfDays` | `int`
(`7`) | Represents the number of days shown in the view. | | `HideEmptyAgendaDays` | `bool`
(`true`) | Defines whether dates with no appointments are rendered. | ## Example @@ -111,5 +110,5 @@ The following parameters allow you to configure the Agenda view: * [Views]({%slug scheduler-views-overview%}) * [Navigation]({%slug scheduler-navigation%}) * [Live Demo: Scheduler Agenda View](https://demos.telerik.com/blazor-ui/scheduler/agenda-view) -* [Resource Grouping Example]({%slug scheduler-resource-grouping%}#resource-grouping-by-one-resource) +* [Resource Grouping]({%slug scheduler-resource-grouping%}) diff --git a/components/scheduler/views/day.md b/components/scheduler/views/day.md index 668ddad6a9..125e1e575e 100644 --- a/components/scheduler/views/day.md +++ b/components/scheduler/views/day.md @@ -10,7 +10,7 @@ position: 1 # Day View -The Day view of the Scheduler for Blazor shows a single day to the user. You can also configure the Day view to display events [grouped by resource]({%slug scheduler-resource-grouping%}). +The Day view of the Scheduler for Blazor shows a single day to the user. The `Date` parameter of the scheduler controls which date is displayed. @@ -100,4 +100,4 @@ In this article: * [Views]({%slug scheduler-views-overview%}) * [Navigation]({%slug scheduler-navigation%}) * [Live Demo: Scheduler Day View](https://demos.telerik.com/blazor-ui/scheduler/day-view) -* [Resource Grouping Example]({%slug scheduler-resource-grouping%}#resource-grouping-by-one-resource) +* [Resource Grouping]({%slug scheduler-resource-grouping%}) diff --git a/components/scheduler/views/month.md b/components/scheduler/views/month.md index 03a1aecfb3..da03554bb4 100644 --- a/components/scheduler/views/month.md +++ b/components/scheduler/views/month.md @@ -10,7 +10,7 @@ position: 4 # Month View -The Month view of the Scheduler for Blazor shows an entire month to the user. You can also configure the Month view to display events [grouped by resource]({%slug scheduler-resource-grouping%}). +The Month view of the Scheduler for Blazor shows an entire month to the user. The `Date` parameter of the Scheduler controls which month is displayed. It's the one containing the date. @@ -42,7 +42,7 @@ If the `ItemsPerSlot` parameter is a zero or a negative value, an `ArgumentOutOf >caption Declare the Month and Day views in the markup ````CSHTML -@* Define the month view. *@ +@* Define the Month view. *@ @@ -144,4 +144,4 @@ If the `ItemsPerSlot` parameter is a zero or a negative value, an `ArgumentOutOf * [Views]({%slug scheduler-views-overview%}) * [Navigation]({%slug scheduler-navigation%}) * [Live Demo: Scheduler Month View](https://demos.telerik.com/blazor-ui/scheduler/month-view) -* [Resource Grouping Example]({%slug scheduler-resource-grouping%}#resource-grouping-by-one-resource) +* [Resource Grouping]({%slug scheduler-resource-grouping%}) diff --git a/components/scheduler/views/multiday.md b/components/scheduler/views/multiday.md index e758c31f13..5bbfde16e1 100644 --- a/components/scheduler/views/multiday.md +++ b/components/scheduler/views/multiday.md @@ -10,7 +10,7 @@ position: 3 # MultiDay View -The MultiDay view of the Scheduler for Blazor shows several days at once to the user. You can also configure the MultiDay view to display events [grouped by resource]({%slug scheduler-resource-grouping%}). +The MultiDay view of the Scheduler for Blazor shows several days at once to the user. The `Date` parameter of the Scheduler controls which is the first rendered date, and the `NumberOfDays` parameter of the View controls how many days will be rendered. @@ -101,5 +101,5 @@ In this article: * [Views]({%slug scheduler-views-overview%}) * [Navigation]({%slug scheduler-navigation%}) * [Live Demo: Scheduler MultiDay View](https://demos.telerik.com/blazor-ui/scheduler/multiday-view) -* [Resource Grouping Example]({%slug scheduler-resource-grouping%}#resource-grouping-by-one-resource) +* [Resource Grouping]({%slug scheduler-resource-grouping%}) diff --git a/components/scheduler/views/timeline.md b/components/scheduler/views/timeline.md index 6ccd34e4d3..5a87694d01 100644 --- a/components/scheduler/views/timeline.md +++ b/components/scheduler/views/timeline.md @@ -10,7 +10,7 @@ position: 5 # Timeline View -The Timeline view displays appointments in a continuous horizontal direction. You can also configure the Timeline view to display events [grouped by resource]({%slug scheduler-resource-grouping%}). +The Timeline view displays appointments in a continuous horizontal direction. In this article: @@ -28,7 +28,7 @@ In this article: ## Example ->tip You can declare other views as well, this example adds only the timeline view for brevity. +>tip You can declare other views as well, this example adds only the Đ¢imeline view for brevity. >caption Declare the Timeline view in the markup @@ -102,5 +102,5 @@ In this article: * [Views]({%slug scheduler-views-overview%}) * [Navigation]({%slug scheduler-navigation%}) * [Live Demo: Scheduler Timeline View](https://demos.telerik.com/blazor-ui/scheduler/timeline-view) -* [Resource Grouping Example]({%slug scheduler-resource-grouping%}#resource-grouping-by-one-resource) +* [Resource Grouping]({%slug scheduler-resource-grouping%}) diff --git a/components/scheduler/views/week.md b/components/scheduler/views/week.md index 7d28868eff..eee5d99c91 100644 --- a/components/scheduler/views/week.md +++ b/components/scheduler/views/week.md @@ -10,7 +10,7 @@ position: 2 # Week View -The Week view of the Scheduler shows the entire week to the user. You can also configure the Week view to display events [grouped by resource]({%slug scheduler-resource-grouping%}). +The Week view of the Scheduler shows the entire week to the user. The `Date` parameter of the scheduler controls which week is displayed. The first day depends on the current culture's `FirstDayOfWeek`. @@ -28,7 +28,7 @@ In this article: ## Example ->tip You can declare other views as well, this example adds only the week view for brevity. +>tip You can declare other views as well, this example adds only the Week view for brevity. >caption Declare the Week view in the markup @@ -100,5 +100,5 @@ In this article: * [Views]({%slug scheduler-views-overview%}) * [Navigation]({%slug scheduler-navigation%}) * [Live Demo: Scheduler Week View](https://demos.telerik.com/blazor-ui/scheduler/week-view) -* [Resource Grouping Example]({%slug scheduler-resource-grouping%}#resource-grouping-by-one-resource) +* [Resource Grouping]({%slug scheduler-resource-grouping%})