Skip to content

Commit 4389e56

Browse files
committed
docs(Scheduler): apply recommendations
1 parent 337cbb8 commit 4389e56

File tree

8 files changed

+18
-17
lines changed

8 files changed

+18
-17
lines changed

_contentTemplates/scheduler/views.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -556,6 +556,7 @@ public class Appointment
556556
<SchedulerMultiDayView></SchedulerMultiDayView>
557557
<SchedulerMonthView></SchedulerMonthView>
558558
<SchedulerTimelineView ColumnWidth="30"></SchedulerTimelineView>
559+
<SchedulerAgendaView></SchedulerAgendaView>
559560
</SchedulerViews>
560561
<SchedulerResources>
561562
<SchedulerResource Field="Room" Title="Edit Room" Data="@SchedulerResources"></SchedulerResource>

components/scheduler/resource-grouping.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ The examples below showcase [resource grouping by one resource](#resource-groupi
7373
<SchedulerWeekView></SchedulerWeekView>
7474
<SchedulerMultiDayView></SchedulerMultiDayView>
7575
<SchedulerMonthView></SchedulerMonthView>
76+
<SchedulerAgendaView></SchedulerAgendaView>
7677
</SchedulerViews>
7778
<SchedulerResources>
7879
<SchedulerResource Field="Manager" Title="Manager" Data="@SchedulerManagers"></SchedulerResource>

components/scheduler/views/agenda.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +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. You can also configure the Agenda view to display events [grouped by resource]({%slug scheduler-resource-grouping%}).
14-
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.
1514

1615
In this article:
1716

@@ -26,7 +25,7 @@ The following parameters allow you to configure the Agenda view:
2625

2726
| Attribute | Type and Default&nbsp;Value | Description |
2827
| --- | --- | --- |
29-
| `NumberOfDays` | `int` <br /> (`7 (a week)`) | Represents the number of days shown in the view. |
28+
| `NumberOfDays` | `int` <br /> (`7`) | Represents the number of days shown in the view. |
3029
| `HideEmptyAgendaDays` | `bool` <br /> (`true`) | Defines whether dates with no appointments are rendered. |
3130

3231
## Example
@@ -111,5 +110,5 @@ The following parameters allow you to configure the Agenda view:
111110
* [Views]({%slug scheduler-views-overview%})
112111
* [Navigation]({%slug scheduler-navigation%})
113112
* [Live Demo: Scheduler Agenda View](https://demos.telerik.com/blazor-ui/scheduler/agenda-view)
114-
* [Resource Grouping Example]({%slug scheduler-resource-grouping%}#resource-grouping-by-one-resource)
113+
* [Resource Grouping]({%slug scheduler-resource-grouping%})
115114

components/scheduler/views/day.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ position: 1
1010

1111
# Day View
1212

13-
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%}).
13+
The Day view of the Scheduler for Blazor shows a single day to the user.
1414

1515
The `Date` parameter of the scheduler controls which date is displayed.
1616

@@ -100,4 +100,4 @@ In this article:
100100
* [Views]({%slug scheduler-views-overview%})
101101
* [Navigation]({%slug scheduler-navigation%})
102102
* [Live Demo: Scheduler Day View](https://demos.telerik.com/blazor-ui/scheduler/day-view)
103-
* [Resource Grouping Example]({%slug scheduler-resource-grouping%}#resource-grouping-by-one-resource)
103+
* [Resource Grouping]({%slug scheduler-resource-grouping%})

components/scheduler/views/month.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ position: 4
1010

1111
# Month View
1212

13-
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%}).
13+
The Month view of the Scheduler for Blazor shows an entire month to the user.
1414

1515
The `Date` parameter of the Scheduler controls which month is displayed. It's the one containing the date.
1616

@@ -42,7 +42,7 @@ If the `ItemsPerSlot` parameter is a zero or a negative value, an `ArgumentOutOf
4242
>caption Declare the Month and Day views in the markup
4343
4444
````CSHTML
45-
@* Define the month view. *@
45+
@* Define the Month view. *@
4646
4747
<TelerikScheduler Data="@Appointments" @bind-Date="@StartDate" @bind-View="@SelectedView" Height="600px">
4848
<SchedulerViews>
@@ -144,4 +144,4 @@ If the `ItemsPerSlot` parameter is a zero or a negative value, an `ArgumentOutOf
144144
* [Views]({%slug scheduler-views-overview%})
145145
* [Navigation]({%slug scheduler-navigation%})
146146
* [Live Demo: Scheduler Month View](https://demos.telerik.com/blazor-ui/scheduler/month-view)
147-
* [Resource Grouping Example]({%slug scheduler-resource-grouping%}#resource-grouping-by-one-resource)
147+
* [Resource Grouping]({%slug scheduler-resource-grouping%})

components/scheduler/views/multiday.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ position: 3
1010

1111
# MultiDay View
1212

13-
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%}).
13+
The MultiDay view of the Scheduler for Blazor shows several days at once to the user.
1414

1515
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.
1616

@@ -101,5 +101,5 @@ In this article:
101101
* [Views]({%slug scheduler-views-overview%})
102102
* [Navigation]({%slug scheduler-navigation%})
103103
* [Live Demo: Scheduler MultiDay View](https://demos.telerik.com/blazor-ui/scheduler/multiday-view)
104-
* [Resource Grouping Example]({%slug scheduler-resource-grouping%}#resource-grouping-by-one-resource)
104+
* [Resource Grouping]({%slug scheduler-resource-grouping%})
105105

components/scheduler/views/timeline.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ position: 5
1010

1111
# Timeline View
1212

13-
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%}).
13+
The Timeline view displays appointments in a continuous horizontal direction.
1414

1515
In this article:
1616

@@ -28,7 +28,7 @@ In this article:
2828

2929
## Example
3030

31-
>tip You can declare other views as well, this example adds only the timeline view for brevity.
31+
>tip You can declare other views as well, this example adds only the Тimeline view for brevity.
3232
3333
>caption Declare the Timeline view in the markup
3434
@@ -102,5 +102,5 @@ In this article:
102102
* [Views]({%slug scheduler-views-overview%})
103103
* [Navigation]({%slug scheduler-navigation%})
104104
* [Live Demo: Scheduler Timeline View](https://demos.telerik.com/blazor-ui/scheduler/timeline-view)
105-
* [Resource Grouping Example]({%slug scheduler-resource-grouping%}#resource-grouping-by-one-resource)
105+
* [Resource Grouping]({%slug scheduler-resource-grouping%})
106106

components/scheduler/views/week.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ position: 2
1010

1111
# Week View
1212

13-
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%}).
13+
The Week view of the Scheduler shows the entire week to the user.
1414

1515
The `Date` parameter of the scheduler controls which week is displayed. The first day depends on the current culture's `FirstDayOfWeek`.
1616

@@ -28,7 +28,7 @@ In this article:
2828

2929
## Example
3030

31-
>tip You can declare other views as well, this example adds only the week view for brevity.
31+
>tip You can declare other views as well, this example adds only the Week view for brevity.
3232
3333
>caption Declare the Week view in the markup
3434
@@ -100,5 +100,5 @@ In this article:
100100
* [Views]({%slug scheduler-views-overview%})
101101
* [Navigation]({%slug scheduler-navigation%})
102102
* [Live Demo: Scheduler Week View](https://demos.telerik.com/blazor-ui/scheduler/week-view)
103-
* [Resource Grouping Example]({%slug scheduler-resource-grouping%}#resource-grouping-by-one-resource)
103+
* [Resource Grouping]({%slug scheduler-resource-grouping%})
104104

0 commit comments

Comments
 (0)