Skip to content

Commit 214cd7c

Browse files
committed
address comments
1 parent 3589379 commit 214cd7c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

controls/scheduler/commands.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ Check below a quick example on how to utilize navigation commands:
4848

4949
- `AgendaMonthNode`—Represents the model for month group headers in the agenda view.
5050
- `AgendaWeekNode`—Represents the model for week group headers in the agenda view.
51-
- `AgendaDayNode`—Represents the model for day group headers in the agenda view
51+
- `AgendaDayNode`—Represents the model for day group headers in the agenda view.
5252
- `AppointmentNode`—Represents the model of the views that are used to visualize appointments.
5353

5454
* `AgendaItemDoubleTapCommand`(`ICommand`)—Defines the command that is executed when an agenda item is double tapped. Applicable only for the `Agenda` view. The command parameter is a `SchedulerNode` object representing the double-tapped agenda item. The items are:
5555

5656
- `AgendaMonthNode`—Represents the model for month group headers in the agenda view.
5757
- `AgendaWeekNode`—Represents the model for week group headers in the agenda view.
58-
- `AgendaDayNode`—Represents the model for day group headers in the agenda view
58+
- `AgendaDayNode`—Represents the model for day group headers in the agenda view.
5959
- `AppointmentNode`—Represents the model of the views that are used to visualize appointments.
6060

6161
## See Also

controls/scheduler/events.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ Here is a list of the available events:
3131
* The sender argument, which is of type `object`, but can be cast to the `RadScheduler` type.
3232
* A `TappedEventArgs<DateTime>` object which provides the month day through its `Data` property.
3333

34-
* `AgendaItemTapped`&mdash;occurs when the user taps on an agenda item. This event only applies to `Agenda` view and is not raised in `Day`, `Week`, `Month`, or `Multiday` views. The `AgendaItemTapped` event handler receives two parameters:
34+
* `AgendaItemTapped`&mdash;Occurs when the user taps on an agenda item. This event only applies to `Agenda` view and is not raised in `Day`, `Week`, `Month`, or `Multiday` views. The `AgendaItemTapped` event handler receives two parameters:
3535
* The sender argument, which is of type `object`, but can be cast to the `RadScheduler` type.
3636
* A `TappedEventArgs<SchedulerNode>` object which provides the agenda item occurrence through its `Data` property. The `Data` property can be one of the following types:
3737
* `AgendaMonthNode`&mdash;Represents the model for month group headers in the agenda view.
3838
* `AgendaWeekNode`&mdash;Represents the model for week group headers in the agenda view.
3939
* `AgendaDayNode`&mdash;Represents the model for day group headers in the agenda view.
4040
* `AppointmentNode`&mdash;Represents the model of the views that are used to visualize appointments.
4141

42-
* `AgendaItemDoubleTapped`&mdash;occurs when the user taps on an agenda item. This event only applies to `Agenda` view and is not raised in `Day`, `Week`, `Month`, or `Multiday` views. The `AgendaItemTapped` event handler receives two parameters:
42+
* `AgendaItemDoubleTapped`&mdash;Occurs when the user double taps on an agenda item. This event only applies to `Agenda` view and is not raised in `Day`, `Week`, `Month`, or `Multiday` views. The `AgendaItemTapped` event handler receives two parameters:
4343
* The sender argument, which is of type `object`, but can be cast to the `RadScheduler` type.
4444
* A `TappedEventArgs<SchedulerNode>` object which provides the agenda item occurrence through its `Data` property. The `Data` property can be one of the following types:
4545
* `AgendaMonthNode`&mdash;Represents the model for month group headers in the agenda view.

controls/scheduler/views/agenda-view.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The Agenda View represents a view that shows a list of appointments in a continu
1212

1313
## Set the Agenda View
1414

15-
Add a `AgendaViewDefinition` to the `ViewDefinitions` collection of the `RadScheduler` instance.
15+
Add an `AgendaViewDefinition` to the `ViewDefinitions` collection of the `RadScheduler` instance.
1616

1717
```XAML
1818
<telerik:RadScheduler x:Name="scheduler">

controls/scheduler/views/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The Telerik UI for .NET MAUI Scheduler control provides the functionality of dis
1414
- [Week View]({%slug scheduler-week-view %})&mdash;Displays the appointment of a week.
1515
- [Multiday View]({%slug scheduler-week-view %})&mdash;Displays the appointments of a specified number of days starting from `CurrentDate`.
1616
- [Month View]({%slug scheduler-month-view %})&mdash;Displays the appointments of a month.
17-
- [Agenda View]({%slug scheduler-agendaview-overview%})&mdash;Displays the appointments in a continuous, scrollable agenda list.
17+
- [Agenda View]({%slug scheduler-agenda-view%})&mdash;Displays the appointments in a continuous, scrollable agenda list.
1818

1919
## Define the Views
2020

0 commit comments

Comments
 (0)