Skip to content

Commit ff10615

Browse files
Merge pull request #1111 from telerik/didi/seo-optimizations
add optimizations
2 parents 202a659 + 8cbe326 commit ff10615

File tree

13 files changed

+37
-22
lines changed

13 files changed

+37
-22
lines changed

controls/button/getting-started.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Getting Started
3-
page_title: .NET MAUI Button Documentation - Getting Started
3+
page_title: Getting Started with .NET MAUI Button
44
description: Get started with the Telerik UI for .NET MAUI Button control and add the control to your .NET MAUI project.
55
position: 1
66
slug: button-getting-started
@@ -10,6 +10,10 @@ slug: button-getting-started
1010

1111
This guide provides the information you need to start using the Telerik UI for .NET MAUI Button by adding the control to your project.
1212

13+
{% if site.has_cta_panels == true %}
14+
{% include cta-panel-maui-overview.html %}
15+
{% endif %}
16+
1317
This is the default look of the `RadButton` control:
1418

1519
![.NET MAUI Button Default Look](images/button-default-look.png)

controls/datagrid/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Events
33
page_title: .NET MAUI DataGrid Documentation - Events
44
description: "Learn about the Telerik UI for .NET MAUI DataGrid events and how to achieve various scenarios upon user interaction such as loading content on demand, binding to data, modifying group collections, and more."
55
position: 14
6-
slug: datagrid-events
76
tags: events
7+
slug: datagrid-events
88
---
99

1010
# .NET MAUI DataGrid Events

controls/datagrid/getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This guide provides the information you need to start using the [Telerik UI for
1212

1313
At the end, you will achieve the following result.
1414

15-
![DataGrid Getting Started](images/datagrid-getting-started.png)
15+
![.NET MAUI DataGrid Getting Started](images/datagrid-getting-started.png)
1616

1717
## Prerequisites
1818

controls/datagrid/load-on-demand.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ You have to set it to the `LoadOnDemandRowStyle` property of the DataGrid:
8282

8383
>caption Row appearance after setting the `LoadOnDemandRowStyle` property
8484
85-
![DataGrid LoadOnDemand Row Style](images/datagrid-rowstyle.png)
85+
![.NET MAUI DataGrid LoadOnDemand Row Style](images/datagrid-rowstyle.png)
8686

8787
### Load-More-Button Row Template
8888

@@ -98,7 +98,7 @@ The following example shows how to set the property:
9898

9999
>caption Row appearance after setting the `LoadOnDemandRowTemplate`
100100
101-
![DataGrid LoadOnDemand Row Style](images/datagrid-rowtemplate.png)
101+
![.NET MAUI DataGrid LoadOnDemand Row Style](images/datagrid-rowtemplate.png)
102102

103103
## Additional Resources
104104
- [.NET MAUI DataGrid Product Page](https://www.telerik.com/maui-ui/datagrid)

controls/datagrid/overview.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
---
22
title: Overview
33
page_title: .NET MAUI DataGrid Overview
4-
description: .NET MAUI DataGrid is a control that allows you to visualize and edit tabular data in your .NET MAUI apps.
4+
description: .NET MAUI Grid is a control that allows you to visualize and edit tabular data in your .NET MAUI apps.
55
position: 0
6+
tags: grid, data grid, maui grid, dot net maui grid, dotnet maui grid
67
previous_url: /controls/datagrid/datagrid-overview
78
slug: datagrid-overview
89
---
@@ -17,7 +18,7 @@ When the data from a database is sent to the client, usually converted to a Busi
1718

1819
The optimized data layer of the DataGrid enables fast grouping, sorting, and filtering operations. The user interface uses virtualization for its row and cell elements, which means that visual elements are created only when needed and only for the currently visible cells.
1920

20-
![Telerik .NET MAUI DataGrid](images/datagrid-overview.png "Telerik .NET MAUI DataGrid")
21+
![Telerik .NET MAUI Grid on all platforms](images/datagrid-overview.png "Telerik .NET MAUI Grid")
2122

2223
## MAUI DataGrid Video Tutorial
2324

@@ -27,7 +28,7 @@ If you prefer video instructions, watch the Getting Started with the MAUI DataGr
2728
* Configure the columns and use custom templates.
2829
* Use sorting, filtering and selection features.
2930

30-
<iframe width="560" height="315" src="https://www.youtube.com/embed/XxUvA4fKHzU?si=EuqJC2OIPrIDMaGd" title="Mastering the DataGrid in Telerik UI for .NET MAUI: Setup, Columns, Sorting, and More" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
31+
<iframe width="560" height="315" src="https://www.youtube.com/embed/XxUvA4fKHzU" title="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!" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
3132

3233
## Built-in Columns
3334

controls/datagrid/paging.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Paging
33
page_title: .NET MAUI DataPager Documentation - Paging Support
44
description: Learn more about how to add paging functionality to the DataGrid for .NET MAUI.
55
position: 7
6+
tags: grid, data grid, maui grid, dot net maui grid, dotnet maui grid
67
slug: datagrid-paging
78
---
89

controls/datagrid/scrolling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ private void Button_Clicked(object sender, System.EventArgs e)
2727

2828
The following image shows the end result.
2929

30-
![DataGrid Programmatic Scrolling](images/datagrid-scrollintoview.gif)
30+
![.NET MAUI DataGrid Programmatic Scrolling](images/datagrid-scrollintoview.gif)
3131

3232
## Additional Resources
3333

controls/datagrid/search-as-you-type.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ title: Search as You Type
33
page_title: .NET MAUI DataGrid Documentation - Search as You Type
44
description: "Learn more about the Search as You Type feature of the Telerik .NET MAUI DataGrid - how to show or hide the search panel, various configuration settings of the search functionality, methods, and events related to searching."
55
position: 3
6+
tags: grid, data grid, maui grid, dot net maui grid, dotnet maui grid
67
slug: datagrid-search-as-you-type
78
---
89

controls/datagrid/sorting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ this.dataGrid.SortDescriptors.Add(new DelegateSortDescriptor() { KeyLookup = new
8686

8787
The following image shows how the DataGrid looks after sorting is applied:
8888

89-
![DataGrid Sorting](images/datagrid_sorting.png)
89+
![.NET MAUI DataGrid Sorting](images/datagrid_sorting.png)
9090

9191
## See Also
9292

controls/datepicker/styling/styling.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ slug: datepicker-styling
1010

1111
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%}).
1212

13+
{% if site.has_cta_panels == true %}
14+
{% include cta-panel-maui-overview.html %}
15+
{% endif %}
16+
1317
## Supported Properties
1418

1519
The DatePicker control supports the following styling properties:

0 commit comments

Comments
 (0)