Skip to content

Commit 2750abf

Browse files
Merge pull request #1138 from telerik/didi/small-updates
small updates
2 parents 218954f + 2d08c4b commit 2750abf

File tree

7 files changed

+12
-13
lines changed

7 files changed

+12
-13
lines changed

controls/datagrid/aggregates/delegate-aggregate-descriptor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ To set up the `DelegateAggregateDescriptor`, use the following properties:
1919

2020
The following example uses the `DelegateAggregateDescriptor` and a custom implementation for a `SumIf` function which sums the values in a range that meet a certain criteria:
2121

22-
**1.** Create a class that inherits from the `IKeyLookup` interface. It will return the values of a `Price` property declared in our business model that is of type `double`.
22+
**1.** Create a class that inherits from the `IKeyLookup` interface. It returns the values of a `Price` property declared in the business model that is of type `double`.
2323

2424
<snippet id='datagrid-delegate-aggregate-key'/>
2525

@@ -35,7 +35,7 @@ The following example uses the `DelegateAggregateDescriptor` and a custom implem
3535

3636
<snippet id='datagrid-aggregates-model'/>
3737

38-
**5.** Set a source to the `RadDataGrid.ItemsSource` proeprty:
38+
**5.** Set a source to the `RadDataGrid.ItemsSource` property:
3939

4040
<snippet id='datagrid-gelegate-aggregate-source'/>
4141

controls/datagrid/aggregates/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ To show the Aggregates in the group header, set the `ShowGroupHeaderAggregates`
4242

4343
![DataGrid Group Header Aggregate](../images/datagrid-group-header-aggregate.png)
4444

45-
To align the aggregates in the group according to its header set the `GroupAggregatesAlignment` (`enum` of type `Telerik.Maui.Controls.DataGrid.DataGridGroupAggregatesAlignment`) property. The available options are:
45+
To align the aggregates in the group according to its header, set the `GroupAggregatesAlignment` (`enum` of type `Telerik.Maui.Controls.DataGrid.DataGridGroupAggregatesAlignment`) property. The available options are:
4646

4747
* (default)`None`&mdash;Aggregates are not aligned to the DataGrid columns. The aggregates results are displayed after the text displayed for the group key.
4848
* `NextToHeader`&mdash;Aggregate results are aligned to the DataGrid columns and placed next to the header of the group.

controls/datagrid/aggregates/property-aggregate-descriptor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ The `PropertyAggregateDescriptor` supports the following `KnownFunction` aggrega
3232

3333
The following example shows how to add a `PropertyAggregateDescriptor` to the DataGrid's columns.
3434

35-
The DataGrid will take the values from the `Name`, `Price`, `DeliveryPrice` and `Quantity` properties of the row model and the result will be the `Min`, `Max`, and `Average` delivery prices, as well as the `Count` of the listed items.
35+
The DataGrid takes the values from the `Name`, `Price`, `DeliveryPrice` and `Quantity` properties of the row model and the result will be the `Min`, `Max`, and `Average` delivery prices, as well as the `Count` of the listed items.
3636

3737
**1.** Define the DataGrid in XAML:
3838

controls/datagrid/aggregates/styling.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Use the following properties to style the `GroupHeader`:
2828
| `ButtonFontSize` | Defines the font size for the expand/collapse symbol of the `GroupHeader`. |
2929
| `ButtonMargin` | Defines the margin for the expand/collapse symbol of the `GroupHeader`. |
3030
| `ButtonTextColor` | Defines the color for the expand/collapse symbol of the `GroupHeader`. |
31-
| `TextColor` | Defines the color for the text part of the `GroupHeader` |
31+
| `TextColor` | Defines the color for the text part of the `GroupHeader`. |
3232
| `TextFontAttributes` | Defines the font attributes for the text part of the `GroupHeader`. |
3333
| `TextFontFamily` | Defines the font family for the text part of the `GroupHeader`. |
3434
| `TextFontSize` | Defines the size for the text part of the `GroupHeader`. |
@@ -44,11 +44,11 @@ The available properties in the `GroupHeaderStyle` are:
4444

4545
| Property | Description |
4646
| ------ | ------ |
47-
| `AggregatesTextColor` | Defines the color for the aggregates part of the `GroupHeader` |
48-
| `AggregatesTextFontAttributes` | Defines the font attributes for the aggregates part of the `GroupHeader` |
49-
| `AggregatesTextFontFamily` | Defines the font family of the aggregates part of the `GroupHeader` |
50-
| `AggregatesTextFontSize` | Defines the size of the aggregates part of the `GroupHeader` |
51-
| `AggregatesTextMargin` | Defines the margin for the aggregates part of the `GroupHeader` |
47+
| `AggregatesTextColor` | Defines the color for the aggregates part of the `GroupHeader`. |
48+
| `AggregatesTextFontAttributes` | Defines the font attributes for the aggregates part of the `GroupHeader`. |
49+
| `AggregatesTextFontFamily` | Defines the font family of the aggregates part of the `GroupHeader`. |
50+
| `AggregatesTextFontSize` | Defines the size of the aggregates part of the `GroupHeader`. |
51+
| `AggregatesTextMargin` | Defines the margin for the aggregates part of the `GroupHeader`. |
5252

5353
The following example shows how to style the aggregate results in the group header when setting the `GroupHeaderStyle` in the page's resources:
5454

controls/treeview/templates/item-template.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ The examples below shows how to define custom `ItemTemplate` by using the `ItemT
2424
<telerik:RadTreeView x:Name="treeView"
2525
ItemsSource="{Binding Items}">
2626
<telerik:TreeViewDescriptor ItemsSourcePath="Children"
27-
DisplayMemberPath="Name"
2827
TargetType="{x:Type local:Item}" />
2928
<!-- modify the label and add additional elements in the label area.
3029
ItemTemplate does not include expand indicator, image, checkbox, only the text, you can add additional elements to it.

installation/vs-code-integration/scaffoldings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ To show a newly scaffolded page in your MAUI app, specify the page's namespace.
4545

4646
### Using a Blank App Template
4747

48-
Set the screen directly to the `MainPage` of the application isndie the `App.xaml.cs` file when using a Blank app template
48+
Set the screen directly to the `MainPage` of the application inside the `App.xaml.cs` file when using a Blank app template.
4949

5050
```C#
5151
MainPage = new MyApp.Pages.TelerikDataGridPage();

installation/vs-integration/scaffoldings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ To show a newly scaffolded page in your MAUI app, specify the page's namespace.
4949

5050
### Using a Blank App Template
5151

52-
Set the screen directly to the `MainPage` of the application isndie the `App.xaml.cs` file when using a Blank app template
52+
Set the screen directly to the `MainPage` of the application inside the `App.xaml.cs` file when using a Blank app template.
5353

5454
```C#
5555
MainPage = new MyApp.Pages.TelerikDataGridPage();

0 commit comments

Comments
 (0)