Skip to content

Commit 337cbb8

Browse files
committed
docs(Scheduler): apply requested changes
1 parent 748391a commit 337cbb8

File tree

6 files changed

+24
-25
lines changed

6 files changed

+24
-25
lines changed

components/scheduler/views/agenda.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -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. Also the Agenda view can be configured to display the events that are [grouped by resource]({%slug scheduler-resource-grouping%})
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%}).
1414

1515

1616
In this article:
@@ -20,7 +20,7 @@ In this article:
2020

2121
## View Parameters
2222

23-
The following parameters allow you to configure the agenda view:
23+
The following parameters allow you to configure the Agenda view:
2424

2525
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
2626

@@ -31,12 +31,12 @@ The following parameters allow you to configure the agenda view:
3131

3232
## Example
3333

34-
>caption Declare the Agenda View in the markup
35-
3634
>tip You can declare other views as well, this example adds only the Agenda view for brevity.
3735
36+
>caption Declare the Agenda view in the markup
37+
3838
````CSHTML
39-
@* Define the agenda view. *@
39+
@* Define the Agenda view. *@
4040
4141
<TelerikScheduler Data="@Appointments" @bind-Date="@StartDate" Width="800px">
4242
<SchedulerViews>

components/scheduler/views/day.md

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

1111
# Day 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. Also the Day view can be configured to display the events that are [grouped by resource]({%slug scheduler-resource-grouping%}).
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%}).
1414

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

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

2929
## Example
3030

31-
>caption Declare the Day View in the markup
31+
>tip You can declare other views as well, this example adds only the Day view for brevity.
3232
33-
>tip You can declare other views as well, this example adds only the day view for brevity.
33+
>caption Declare the Day view in the markup
3434
3535
````CSHTML
36-
@* Define the day view. *@
36+
@* Define the Day view. *@
3737
3838
<TelerikScheduler Data="@Appointments" @bind-Date="@StartDate" Height="600px">
3939
<SchedulerViews>

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. Also the Month view can be configured to display the events that are [grouped by resource]({%slug scheduler-resource-grouping%}).
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%}).
1414

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

@@ -37,9 +37,9 @@ If the `ItemsPerSlot` parameter is a zero or a negative value, an `ArgumentOutOf
3737

3838
## Example
3939

40-
>caption Declare the Month and Day Views in the markup
40+
>tip You can declare other views as well, this example adds only the Month and Day views for brevity.
4141
42-
>tip You can declare other views as well, this example adds only the month and day views for brevity.
42+
>caption Declare the Month and Day views in the markup
4343
4444
````CSHTML
4545
@* Define the month view. *@

components/scheduler/views/multiday.md

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

1111
# MultiDay View
1212

13-
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%}).
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%}).
1414

15-
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.
15+
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

1717
In this article:
1818

@@ -29,13 +29,12 @@ In this article:
2929

3030
## Example
3131

32-
>caption Declare the MultiDay View in the markup
33-
34-
>tip You can declare other views as well, this example adds only the multiday view for brevity.
32+
>tip You can declare other views as well, this example adds only the Multiday view for brevity.
3533
34+
>caption Declare the MultiDay view in the markup
3635
3736
````CSHTML
38-
@* Define the multiday view. *@
37+
@* Define the Multiday view. *@
3938
4039
<TelerikScheduler Data="@Appointments" @bind-Date="@StartDate" Height="600px" Width="800px">
4140
<SchedulerViews>

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. Also the Timeline view can be configured to display the events that are [grouped by resource]({%slug scheduler-resource-grouping%})
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%}).
1414

1515
In this article:
1616

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

2929
## Example
3030

31-
>caption Declare the Timeline View in the markup
32-
3331
>tip You can declare other views as well, this example adds only the timeline view for brevity.
3432
33+
>caption Declare the Timeline view in the markup
34+
3535
````CSHTML
3636
@* Define the Timeline view. *@
3737

components/scheduler/views/week.md

Lines changed: 4 additions & 4 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. Also the Week view can be configured to display the events that are [grouped by resource]({%slug scheduler-resource-grouping%})
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%}).
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,12 +28,12 @@ In this article:
2828

2929
## Example
3030

31-
>caption Declare the Week View in the markup
32-
3331
>tip You can declare other views as well, this example adds only the week view for brevity.
3432
33+
>caption Declare the Week view in the markup
34+
3535
````CSHTML
36-
@* Define the week view. *@
36+
@* Define the Week view. *@
3737
3838
<TelerikScheduler Data="@Appointments" @bind-Date="@StartDate" Height="600px" Width="800px">
3939
<SchedulerViews>

0 commit comments

Comments
 (0)