Skip to content

Commit 34ade9b

Browse files
committed
Polish KB and cross-link
1 parent 20ec2fd commit 34ade9b

File tree

4 files changed

+11
-12
lines changed

4 files changed

+11
-12
lines changed

components/grid/row-drag-drop.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1768,7 +1768,6 @@ List on known limitations for the Grid Drag and Drop features:
17681768

17691769
## See Also
17701770

1771-
* [Grid Overview]({%slug grid-overview%})
1772-
* [Live Demos: Grid](https://demos.telerik.com/blazor-ui/grid/overview)
1771+
* [Live Demo: Grid Drag and Drop](https://demos.telerik.com/blazor-ui/grid/drag-drop)
1772+
* [Drag and Drop between Different Parent Components]({%slug grid-kb-drag-drop-in-different-components%})
17731773
* [Grid API Reference](/blazor-ui/api/Telerik.Blazor.Components.TelerikGrid-1)
1774-
* [Blazor Grid]({%slug grid-overview%})

components/treelist/row-drag-drop.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1154,6 +1154,6 @@ public class Employee
11541154

11551155
## See Also
11561156

1157-
* [TreeList Overview]({%slug treelist-overview%})
1158-
* [Live Demos: TreeList](https://demos.telerik.com/blazor-ui/treelist/overview)
1159-
1157+
* [Live Demo: TreeList Drag and Drop](https://demos.telerik.com/blazor-ui/treelist/drag-drop)
1158+
* [Drag and Drop between Different Parent Components]({%slug grid-kb-drag-drop-in-different-components%})
1159+
* [TreeList API Reference](/blazor-ui/api/Telerik.Blazor.Components.TelerikTreeList-1)

components/treeview/drag-drop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1349,6 +1349,6 @@ using System.Collections.ObjectModel;
13491349

13501350
## See Also
13511351

1352+
* [Live Demo: TreeView Drag and Drop](https://demos.telerik.com/blazor-ui/treeview/drag-drop)
13521353
* [Data Binding a TreeView]({%slug components/treeview/data-binding/overview%})
1353-
* [Live Demo: TreeView](https://demos.telerik.com/blazor-ui/treeview/drag-drop)
13541354
* [TreeView API Reference](/blazor-ui/api/Telerik.Blazor.Components.TelerikTreeView)

knowledge-base/grid-drag-drop-in-different-components.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ There are at least two ways to approach drag and drop across different parent co
3535
* Use parameters and `EventCallback`s to pass information between the two parent Razor components, which hold the Telerik components. This is a suitable approach if the two parent components are a siblings in their own parent.
3636
* Use a state management service in your app, which will execute methods and fire events to the Razor components that hold the Telerik components. This is a suitable approach in all cases, but especially if the two parent components are further away in the app component hierarchy.
3737

38-
The algorithm below is applicable for the [Grid]({%slug grid-drag-drop-overview%}), [TreeList]({%slug treelist-drag-drop-overview%}) and [TreeView]({%slug treeview-drag-drop-overview%}).
38+
The described algorithm and the example below are applicable for the [Grid]({%slug grid-drag-drop-overview%}), [TreeList]({%slug treelist-drag-drop-overview%}) and [TreeView]({%slug treeview-drag-drop-overview%}).
3939

4040
## Example
4141

4242
The following example includes three files:
4343

44-
* `Home.razor` is the component (page) that holds `GridContainer` components with Telerik Grids inside.
4544
* `GridContainer.razor` is a Razor component that contains a Grid with enabled row drag and drop.
45+
* `Home.razor` is a component (page) that holds two `GridContainer` instances.
4646
* `GridModel.cs` is the Grid model class.
4747

4848
Adjust the `YourAppName` namespace in `Home.razor` and `GridModel.cs` to run the code successfully in your app.
@@ -178,6 +178,6 @@ namespace YourAppName.Data
178178

179179
## See Also
180180

181-
* [Drag and drop items between Grids]({%slug grid-drag-drop-overview%})
182-
* [Drag and drop items between TreeLists]({%slug treelist-drag-drop-overview%})
183-
* [Drag and drop items between TreeViews]({%slug treeview-drag-drop-overview%})
181+
* [Grid Drag and Drop Documentation]({%slug grid-drag-drop-overview%})
182+
* [TreeList Drag and Drop Documentation]({%slug treelist-drag-drop-overview%})
183+
* [TreeView Drag and Drop Documentation]({%slug treeview-drag-drop-overview%})

0 commit comments

Comments
 (0)