Skip to content

Commit 045671f

Browse files
committed
chore(common): fix links
1 parent a27922e commit 045671f

File tree

13 files changed

+16
-16
lines changed

13 files changed

+16
-16
lines changed

components/treelist/columns/checkbox.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The TreeList checkbox column has the following exclusive parameters. For other a
2323
| Parameter | Type and Default Value | Description |
2424
| --- | --- | --- |
2525
| `CheckBoxOnlySelection` | `bool` | Determines if row selection occurs only on checkbox clicks. By default, user can select rows by clicking anywhere, except on command buttons. |
26-
| `SelectAll` | `bool` <br /> (`true`) | Determines if the column header renders a checkbox to select all rows. Set this to `false` if the [TreeList `SelectionMode` is `Single`]({%slug treelist-selection-overview%}#use-single-or-multiple-selection). The `SelectAll` parameter has no effect when the checkbox column has a [`HeaderTemplate`](#headertemplate). |
26+
| `SelectAll` | `bool` <br /> (`true`) | Determines if the column header renders a checkbox to select all rows. Set this to `false` if the [TreeList `SelectionMode` is `Single`]({%slug treelist-selection-overview%}#use-single-or-multiple-selection). The `SelectAll` parameter has no effect when the checkbox column has a [`HeaderTemplate`](#header-template). |
2727
| `SelectAllMode` | `TreeListSelectAllMode` enum <br /> (`Current`) | Determines if the header cell checkbox selects all rows on the current page, or all rows in the TreeList. `Current` selects the visible rows on the current page. It does not select the children of collapsed items - they are not part of the [current page]({%slug treelist-paging%}) data. `All` selects all the data items, including ones that may be currently filtered out. |
2828
| `SelectChildren` | `bool` | Determines if a parent row checkbox affects the selected state of respective child rows. |
2929

components/treelist/columns/menu.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ The example shows the following things:
249249

250250
* Settings applied to a TreeList column take precedence over the settings applied to the Column Menu through the `<TreeListColumnMenuSettings>` tag. For example, if you set `Filterable="false"` to a TreeList column and `Filterable="true"` to a TreeList Column Menu, the filtering functionality will be disabled.
251251

252-
* When using the [Column Chooser Template]({%slug treelist-templates-column-chooser%}) or grouping the columns into [sections](#sections), add the `Title` parameter to all TreeList Columns.
252+
* When using the [Column Chooser Template]({%slug treelist-templates-column-chooser%}) or grouping the columns into [sections](#column-sections), add the `Title` parameter to all TreeList Columns.
253253

254254
## See Also
255255
* [Live Demo: TreeList Column Menu](https://demos.telerik.com/blazor-ui/treelist/column-menu)

components/treelist/editing/incell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ Editing is cancelled for the first record.
330330

331331
## Incell Editing and Selection
332332

333-
* To enable item selection with InCell Edit Mode, add a `<TreeListCheckboxColumn />` to the `<Columns>` collection. More information on that can be read in the [Selection]({%slug treelist-selection-overview%}#notes) article.
333+
* To enable item selection with InCell Edit Mode, add a `<TreeListCheckboxColumn />` to the `<Columns>` collection. More information on that can be read in the [Selection]({%slug treelist-selection-row%}#selection-and-editing-modes ) article.
334334

335335

336336
## Adding Children to Collapsed Items

components/treelist/editing/validation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ The Telerik UI for Blazor TreeList supports built-in validation that is enabled
1414

1515
#### In this Article:
1616

17-
* [Disable the validation](#disable-the-validation)
18-
* [Use a custom validator](#use-custom-validator)
17+
* [Disable the validation](#disable-validation)
18+
* [Use a custom validator](#use-a-custom-validator)
1919

2020
## Disable Validation
2121

components/treelist/row-drag-drop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This article contains the following sections:
1616

1717
* [Basics](#basics)
1818
* [OnRowDrop Event](#onrowdrop-event)
19-
* [TreeListRowDraggableSettings](#treelistdrowdraggablesettings)
19+
* [TreeListRowDraggableSettings](#treelistrowdraggablesettings)
2020
* [Examples](#examples)
2121
* [Drag and Drop a Row in the same TreeList](#drag-and-drop-a-row-in-the-same-treelist)
2222
* [Drag and Drop a Row between TreeLists](#drag-and-drop-a-row-between-treelists)

components/treelist/selection/rows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ The `SelectedItemsChanged` event handler cannot be awaited. To execute asynchron
168168
When the TreeList `Data` collection changes, the `SelectedItems` collection has the following behavior:
169169

170170
* When the user updates a selected item and the item instance is replaced, you have to also replace the selected item object in the `SelectedItems` collection. Do that in the [TreeList `OnUpdate` event]({%slug treelist-editing-overview%}#events).
171-
* When the user deletes a selected item, the TreeList automatically deletes it from the `SelectedItems` collection and the [`SelectedItemsChanged` event](#selecteditemschanged) fires.
171+
* When the user deletes a selected item, the TreeList automatically deletes it from the `SelectedItems` collection and the [`SelectedItemsChanged` event](#selecteditemschanged-event) fires.
172172
* To select a new item in the TreeList you can use the [`OnCreate` event]({%slug treelist-editing-overview%}#events) to update the `SelectedItems` collection.
173173

174174
## Equals Comparison

components/treelist/state.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ You can find the following examples in this section:
102102
* [Save and Load TreeList State from Browser LocalStorage](#save-and-load-treelist-state-from-browser-localstorage)
103103
* [Set TreeList Options Through State](#set-treelist-options-through-state)
104104
* [Set Default (Initial) State](#set-default-initial-state)
105-
* [Get The User Action That Changes The TreeList](#get-the-user-action-that-changes-the-treelist)
105+
* [Get and Override The User Action That Changes The TreeList](#get-and-override-the-user-action-that-changes-the-treelist)
106106
* [Initiate Editing or Inserting of an Item](#initiate-editing-or-inserting-of-an-item)
107107
* [Get Current Columns Visibility, Order, Field](#get-current-columns-visibility-order-field)
108108

components/treeview/checkboxes/single.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ You can use one-way binding to provide an initial checked node, and respond to t
163163
164164
![checking single node example](images/single-node-checking-one-way-binding-example.png)
165165

166-
### Selection of a single node using two-way data binding
166+
### Checking a single node using two-way data binding
167167

168168
You can use two-way binding to get the node the user has checked. This can be useful if the node model already contains all the information you need to use. It also reduces the amount of code you need to write.
169169

components/treeview/data-binding/load-on-demand.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ You don't have to provide all the data the treeview will render at once - the ro
1818

1919
In this article:
2020

21-
* [Hierarchical Data Load on Demand - One Model](#hierarchical-data-load-on-demand---one-model)
21+
* [Hierarchical Data Load on Demand - One Model](#hierarchical-data-load-on-demand-one-model)
2222

2323
* [Flat Data Load on Demand](#flat-data-load-on-demand)
2424

25-
* [Hierarchical Data Load on Demand - Different Models](#hierarchical-data-load-on-demand---different-models)
25+
* [Hierarchical Data Load on Demand - Different Models](#hierarchical-data-load-on-demand-different-models)
2626

2727
## Hierarchical Data Load on Demand - One Model
2828

components/treeview/drag-drop.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This article is divided in the following sections:
2020
* [`OnDrop` Event](#ondrop-event)
2121
* [`OnDragEnd` Event](#ondragend-event)
2222
* [Examples](#examples)
23-
* [Events Example](#events-example)
23+
* [TreeView Drag and Drop Events Example](#treeview-drag-and-drop-events)
2424
* [Drag and Drop between TreeView, Grid, TreeList and Scheduler](#drag-and-drop-between-treeview-grid-treelist-and-scheduler)
2525
* [Flat Data](#flat-data)
2626
* [Hierarchical Data](#hierarchical-data)
@@ -102,7 +102,7 @@ The `OnDragEnd` event handler receives as an argument an object of type `TreeVie
102102

103103
## Examples
104104

105-
* [Events Example](#events-example)
105+
* [TreeView Drag and Drop Events Example](#treeview-drag-and-drop-events)
106106
* [Drag and Drop between TreeView, Grid, TreeList and Scheduler](#drag-and-drop-between-treeview-grid-treelist-and-scheduler)
107107
* [Flat Data](#flat-data)
108108
* [Hierarchical Data](#hierarchical-data)

0 commit comments

Comments
 (0)