Skip to content

Commit f9ea5ca

Browse files
committed
fix slugs
1 parent 8f418d2 commit f9ea5ca

File tree

16 files changed

+18
-31
lines changed

16 files changed

+18
-31
lines changed

controls/datapager/integration/treedatagrid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ You can page the data of the [Telerik UI for .NET MAUI TreeDataGrid]({%slug tree
1212

1313
![.NET MAUI DataPager with TreeDataGrid](../images/datapager-treedatagrid-paging.png)
1414

15-
>Currently, the DataPager does not support the Telerik UI for .NET MAUI TreeDataGrid [`LoadOnDemandCollection`]({%slug treedatagrid-features-loadondemand%}#loadOnDemand-collection).
15+
>Currently, the DataPager does not support the Telerik UI for .NET MAUI TreeDataGrid [`LoadOnDemandCollection`]({%slug treedatagrid-loadondemand%}#loadOnDemand-collection).
1616
1717
## Example
1818

controls/treedatagrid/cells/current-cell.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,5 @@ You can style the current cell by using the `CurrentCellStyle` property (of type
3939
## See Also
4040

4141
- [Setting the .NET MAUI TreeDataGrid Columns]({%slug treedatagrid-columns-overview%})
42-
- [Using the TreeDataGrid Commands]({%slug treedatagrid-aggregates%})
4342
- [Sorting .NET MAUI TreeDataGrid Records]({%slug treedatagrid-sorting%})
4443
- [Filtering .NET MAUI TreeDataGrid Records]({%slug treedatagrid-filtering-overview%})

controls/treedatagrid/columns/header.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Column Headers
33
page_title: .NET MAUI DataGrid Documentation - Columns Header
44
description: Learn how to style and customize the text in the Telerik UI for .NET MAUI DataGrid Header by using the properties of the component.
55
position: 2
6-
slug: datagrid-column-header
6+
slug: treedatagrid-column-header
77
---
88

99

controls/treedatagrid/columns/nested-properties.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Nested Properties
33
page_title: .NET MAUI TreeDataGrid Documentation - Nested Properties Support
44
description: Check our "Nested Properties" documentation article for Telerik TreeDataGrid for .NET MAUI.
55
position: 5
6-
slug: datagrid-nested-properties
6+
slug: treedatagrid-nested-properties
77
---
88

99
# .NET MAUI TreeDataGrid Nested Properties Support

controls/treedatagrid/commands/editing.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,6 @@ As the TreeDataGrid inherits from the DataGrid, for a runnable example with the
2626

2727
## See Also
2828

29-
- [DataGrid Styling]({%slug treedatagrid-styling%})
30-
- [Columns Styling]({%slug treedatagrid-columns-styling%})
29+
- [Setting the .NET MAUI TreeDataGrid Columns]({%slug treedatagrid-columns-overview%})
30+
- [Sorting .NET MAUI TreeDataGrid Records]({%slug treedatagrid-sorting%})
31+
- [Filtering .NET MAUI TreeDataGrid Records]({%slug treedatagrid-filtering-overview%})

controls/treedatagrid/editing.md

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ title: Editing
33
page_title: .NET MAUI TreeTreeDataGrid Documentation - Editing
44
description: Learn how to use the built-in column and custom editors for modifying the data records in the Telerik UI for .NET MAUI TreeTreeDataGrid component.
55
position: 9
6-
slug: treeTreeDataGrid-editing
6+
slug: treedatagrid-editing
77
---
88

9-
# .NET MAUI TreeTreeDataGrid Editing
9+
# .NET MAUI TreeDataGrid Editing
1010

11-
The [Telerik UI for .NET MAUI TreeTreeDataGrid]({%slug TreeDataGrid-overview%}) provides built-in editing capabilities, which allow users to modify the data presented in the Grid.
11+
The [Telerik UI for .NET MAUI TreeDataGrid]({%slug treedatagrid-overview%}) provides built-in editing capabilities, which allow users to modify the data presented in the Grid.
1212

13-
Depending on the [TreeDataGrid column data type]({% slug TreeDataGrid-columns-boolean-column %}), the TreeDataGrid provides a relevant editor which allows users to edit the content upon double-clicking the desired cell.
13+
Depending on the [TreeDataGrid column data type]({% slug treedatagrid-columns-overview%}), the TreeDataGrid provides a relevant editor which allows users to edit the content upon double-clicking the desired cell.
1414

1515
## Editing Properties
1616

@@ -19,7 +19,7 @@ To enable editing in the TreeDataGrid, define the `UserEditMode` property of the
1919
* `None`—(default on Mobile) Editing is disabled.
2020
* `Cell`—(default on Desktop) Enables the editing option.
2121

22-
You can also independently disable editing for specific columns through the `CanUserEdit` property of the `TreeDataGridColumn` class. For more details, refer to the topic about [columns in the .NET MAUI TreeDataGrid]({%slug TreeDataGrid-columns-overview%}).
22+
You can also independently disable editing for specific columns through the `CanUserEdit` property of the `TreeDataGridColumn` class. For more details, refer to the topic about [columns in the .NET MAUI TreeDataGrid]({%slug treedatagrid-columns-overview%}).
2323

2424
## Column Editors
2525

@@ -39,7 +39,7 @@ The following table lists the integrated .NET MAUI control for editing the value
3939

4040
## Custom Editors
4141

42-
If the default editors do not suit the scenario you have, create a custom editor for each column by utilizing the `CellEditTemplate` property of the `TreeDataGridColumn`. For detailed information on how the `CellEditTemplate` can be applied, refer to the article about the [.NET MAUI TreeDataGrid column cell templates]({%slug TreeDataGrid-cell-templates%}).
42+
If the default editors do not suit the scenario you have, create a custom editor for each column by utilizing the `CellEditTemplate` property of the `TreeDataGridColumn`. For detailed information on how the `CellEditTemplate` can be applied, refer to the article about the [.NET MAUI TreeDataGrid column cell templates]({%slug treedatagrid-cell-templates%}).
4343

4444
## Editing Commands
4545

@@ -49,7 +49,7 @@ The TreeDataGrid provides the following commands related to the editing function
4949
* `CancelEdit`—Provides an entry point just before the editing is canceled.
5050
* `CommitEdit`—Provides an entry point just before the editing is committed.
5151

52-
For detailed information on how to use any of the listed commands, go to the topic about the [.NET MAUI TreeDataGrid editing commands]({%slug TreeDataGrid-commands-editing%}).
52+
For detailed information on how to use any of the listed commands, go to the topic about the [.NET MAUI TreeDataGrid editing commands]({%slug treedatagrid-commands-editing%}).
5353

5454
## Styling
5555

@@ -68,7 +68,5 @@ The following snippet shows a `CellEditorStyle` applied to the `TreeDataGridText
6868

6969
## See Also
7070

71-
- [Editing Commands in the Telerik UI for .NET MAUI TreeDataGrid]({%slug treeDataGrid-commands-editing%})
72-
- [Column Cell Templates in the .NET MAUI TreeDataGrid]({%slug treeDataGrid-cell-templates%})
73-
- [Styling the Columns of the .NET MAUI TreeDataGrid]({%slug treeDataGrid-columns-styling%})
74-
71+
- [Editing Commands in the Telerik UI for .NET MAUI TreeDataGrid]({%slug treedatagrid-commands-editing%})
72+
- [Column Cell Templates in the .NET MAUI TreeDataGrid]({%slug treedatagrid-cell-templates%})

controls/treedatagrid/keyboard-navigation/maccatalyst.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,4 @@ The following table lists the actions and keyboard combinations that are availab
4444
## See Also
4545

4646
- [Sorting Telerik UI for .NET MAUI TreeDataGrid Records]({%slug treedatagrid-sorting%})
47-
- [Filtering .NET MAUI TreeDataGrid Records]({%slug treedatagrid-filtering-overview%})
48-
- [Styling the Appearance of the TreeDataGrid]({%slug treedatagrid-styling%})
47+
- [Filtering .NET MAUI TreeDataGrid Records]({%slug treedatagrid-filtering-overview%})

controls/treedatagrid/keyboard-navigation/windows.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,3 @@ The following table lists the actions and keyboard combinations that are availab
4747

4848
- [Sorting Telerik UI for .NET MAUI TreeDataGrid Records]({%slug treedatagrid-sorting%})
4949
- [Filtering .NET MAUI TreeDataGrid Records]({%slug treedatagrid-filtering-overview%})
50-
- [Styling the Appearance of the TreeDataGrid]({%slug treedatagrid-styling%})

controls/treedatagrid/localization.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,3 @@ The table below shows the localization keys available for the TreeDataGrid contr
5959
## See Also
6060

6161
- [Sorting .NET MAUI DataGrid Records]({%slug treedatagrid-sorting%})
62-
- [Styling the Appearance of the DataGrid]({%slug treedatagrid-styling%})
63-
64-

controls/treedatagrid/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ The MAUI TreeDataGrid allows you to add [commands]({%slug treedatagrid-commands-
7979

8080
## Theming and Style
8181

82-
You can apply a [theme]({%slug themes-overview%}) to the MAUI TreeDataGrid. If you prefer to use your own styling, then you can use the [flexible styling API]({%slug treedatagrid-styling%}) of the .NET MAUI TreeDataGrid. The styling API allows you to style the TreeDataGrid rows and columns, the cell content inside the columns, the tree arrow appearance, etc.
82+
You can apply a [theme]({%slug themes-overview%}) to the MAUI TreeDataGrid. If you prefer to use your own styling, then you can use the flexible styling API of the .NET MAUI TreeDataGrid. The styling API allows you to style the TreeDataGrid rows and columns, the cell content inside the columns, the tree arrow appearance, etc.
8383
In addition, you can apply a style selector.
8484

8585
## Localization

0 commit comments

Comments
 (0)