Skip to content

Commit 8559413

Browse files
Merge pull request #1139 from telerik/master
merge master into dev
2 parents 3c258d0 + 2750abf commit 8559413

36 files changed

+1122
-45
lines changed

controls/button/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ slug: button-getting-started
88

99
# Getting Started with the .NET MAUI Button
1010

11-
This guide provides the information you need to start using the Telerik UI for .NET MAUI Button by adding the control to your project.
11+
This guide provides the information you need to start using the Telerik UI for [.NET MAUI Button]({%slug button-overview%}) by adding the control to your project.
1212

1313
{% if site.has_cta_panels == true %}
1414
{% include cta-panel-maui-overview.html %}

controls/collectionview/item-swipe/item-swipe-commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ slug: collectionview-item-swipe-commands
77
tags: item-swipe, collectionview, swiping, commands
88
---
99

10-
## .NET MAUI CollectionView Swiping Commands
10+
# .NET MAUI CollectionView Swiping Commands
1111

1212
The .NET MAUI CollectionView provides the following commands related to swipe actions:
1313

controls/collectionview/item-swipe/item-swipe-events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ slug: collectionview-item-swipe-events
77
tags: item-swipe, collectionview, swiping, events
88
---
99

10-
## .NET MAUI CollectionView Swiping Events
10+
# .NET MAUI CollectionView Swiping Events
1111

1212
The following `RadCollectionView` events are related to the item swiping feature:
1313

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: 2 additions & 2 deletions
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.
@@ -60,4 +60,4 @@ To visualize the group footer, set the `ShowGroupFooters` property to `True`. Th
6060
## See Also
6161

6262
- [Property Aggregate Descriptor]({%slug datagrid-property-aggregate-descriptor%})
63-
- [Delegate Aggregate Descriptor]({%slug datagrid-delegate-aggregate-descriptor%})
63+
- [Delegate Aggregate Descriptor]({%slug datagrid-delegate-aggregate-descriptor%})

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: 7 additions & 7 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

@@ -167,4 +167,4 @@ The following image shows the end result.
167167
## See Also
168168

169169
- [Property Aggregate Descriptor]({%slug datagrid-property-aggregate-descriptor%})
170-
- [Delegate Aggregate Descriptor]({%slug datagrid-delegate-aggregate-descriptor%})
170+
- [Delegate Aggregate Descriptor]({%slug datagrid-delegate-aggregate-descriptor%})

controls/datagrid/overview.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ slug: datagrid-overview
1010

1111
# .NET MAUI DataGrid Overview
1212

13-
The Telerik UI for .NET MAUI DataGrid is a powerful control that allows you to visualize and edit tabular represented data in your .NET MAUI applications.
13+
The Telerik UI for [.NET MAUI DataGrid](https://www.telerik.com/maui-ui/datagrid) is a powerful control that allows you to visualize and edit tabular represented data in your .NET MAUI applications.
1414

1515
Most of the data on the Internet is stored in tables within a database. The Telerik UI for .NET MAUI DataGrid provides the same abstraction over the data&mdash;It has columns and rows, and the intersection of a row and a column is called a cell.
1616

@@ -109,3 +109,18 @@ The Telerik UI for .NET MAUI DataGrid provides [localization support]({%slug glo
109109
- [.NET MAUI DataGrid Forum Page](https://www.telerik.com/forums/maui?tagId=1801)
110110
- [Telerik .NET MAUI Blogs](https://www.telerik.com/blogs/mobile-net-maui)
111111
- [Telerik .NET MAUI Roadmap](https://www.telerik.com/support/whats-new/maui-ui/roadmap)
112+
113+
114+
<script type="application/ld+json">
115+
{
116+
"@context": "https://schema.org",
117+
"@type": "VideoObject",
118+
"name": "Mastering the DataGrid in Telerik UI for .NET MAUI: Setup, Columns, Sorting, and More | Chapter 4",
119+
"description": "Take your .NET MAUI skills to the next level with Chapter 4 of the Telerik UI for .NET MAUI course! This video provides a comprehensive guide to .NET MAUI Grid control. Learn about its features, setup process, column configuration, and creating custom column templates. Discover how to enable sorting, filtering, and selection for a dynamic and powerful data presentation in your apps. Watch now and become a DataGrid expert!",
120+
"thumbnailUrl": "https://img.youtube.com/vi/XxUvA4fKHzU/maxresdefault.jpg",
121+
"uploadDate": "2024-12-05",
122+
"duration": "PT20M27S",
123+
"contentUrl": "https://youtu.be/XxUvA4fKHzU",
124+
"embedUrl": "https://www.youtube.com/embed/XxUvA4fKHzU"
125+
}
126+
</script>

controls/datepicker/styling/styling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ slug: datepicker-styling
88

99
# Styling the .NET MAUI DatePicker
1010

11-
The DatePicker control for .NET MAUI provides styling options for customizing its appearance. You can style the DatePicker itself, as well as its popup or drop-down depending on the configuration of the [picker mode]({%slug datepicker-picker-mode%}).
11+
The DatePicker control for .NET MAUI provides styling options for customizing its appearance. You can style the .NET MAUI DatePicker, as well as its popup or drop-down depending on the configuration of the [picker mode]({%slug datepicker-picker-mode%}).
1212

1313
{% if site.has_cta_panels == true %}
1414
{% include cta-panel-maui-overview.html %}

controls/imageeditor/saving-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ position: 5
66
slug: imageeditor-saving-image
77
---
88

9-
## Saving Images with .NET MAUI ImageEditor
9+
# Saving Images with .NET MAUI ImageEditor
1010

1111
`RadImageEditor` control gives you the option to save the currently edited image using the `SaveAsync` method. The `SaveAsync` method has the following overloads:
1212

0 commit comments

Comments
 (0)