Skip to content

Commit a27922e

Browse files
committed
chore(common): fix links
1 parent 34e7897 commit a27922e

File tree

26 files changed

+33
-35
lines changed

26 files changed

+33
-35
lines changed

components/grid/columns/bound.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,9 +117,9 @@ You can use the following properties on bound columns:
117117

118118
### Templates
119119

120-
* `Template` - this property can also be used as an inner tag and it lets you define the [column display content]({%slug components/grid/features/templates%}#column-template). It can also point to a component name.
120+
* `Template` - this property can also be used as an inner tag and it lets you define the [column display content]({%slug grid-templates-column%}). It can also point to a component name.
121121
* `Context` - the standard Blazor context variable name for use inside the inline template.
122-
* `EditorTemplate` - this property can also be used as an inner tag and it lets you define the [column edit content]({%slug components/grid/features/templates%}#edit-template). It can also point to a component name.
122+
* `EditorTemplate` - this property can also be used as an inner tag and it lets you define the [column edit content]({%slug grid-templates-editor%}). It can also point to a component name.
123123
* `FilterCellTemplate` - this property can also be used as an inner tag and it lets you customize [the Grid Filter Row]({%slug grid-templates-filter%}#filter-row-template). It can also point to a component name.
124124
* `FilterMenuTemplate` - this property can also be used as an inner tag and it lets you customize [the Grid Filter Menu]({%slug grid-templates-filter%}#filter-menu-template). It can also point to a component name.
125125

components/grid/editing/popup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,5 +267,5 @@ You can specify a `ButtonsTemplate` in the `GridPopupEditFormSettings` to custom
267267
## See Also
268268

269269
* [Live Demo: Grid Popup Editing](https://demos.telerik.com/blazor-ui/grid/editing-popup)
270-
* [Custom Editor Template Per Field]({%slug components/grid/features/templates%}#edit-template)
270+
* [Custom Editor Template Per Field]({%slug grid-templates-editor%})
271271
* [Custom Editor Layout](https://github.com/telerik/blazor-ui/tree/master/grid/custom-popup-form)

components/grid/loading-animation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The data operations that trigger the loading animation include:
2323
* [Inserting]({%slug components/grid/editing/overview%})
2424
* [Deleting records]({%slug components/grid/editing/overview%})
2525

26-
The Grid will not display a loading animation during its initial rendering. The component cannot know when or even if data will be provided to it. Initial automatic loading sign can either show indefinitely, or it could prevent the user from altering any saved Grid state (such as changing filters). If you want a loading animation on the initial load, you can use a [LoaderContainer component]({%slug loadercontainer-overview%}#basic-loadercontainer). See the [Grid Loading Animation Live Demo](https://demos.telerik.com/blazor-ui/grid/loading-animation).
26+
The Grid will not display a loading animation during its initial rendering. The component cannot know when or even if data will be provided to it. Initial automatic loading sign can either show indefinitely, or it could prevent the user from altering any saved Grid state (such as changing filters). If you want a loading animation on the initial load, you can use a [LoaderContainer component]({%slug loadercontainer-overview%}). See the [Grid Loading Animation Live Demo](https://demos.telerik.com/blazor-ui/grid/loading-animation).
2727

2828
>caption Grid Loading Animation
2929

components/grid/selection/cells.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ The `SelectedCells` collection persists across paging.
233233
When using [Grid templates]({%slug components/grid/features/templates%}) with cell selection:
234234

235235
* If you are using a [Grid column template]({%slug grid-templates-column%}) and you have a clickable element in the template, wrap this element in a container with a `@onclick:stopPropagation` directive. You can check the knowledge base article on [how to prevent row selection when the user clicks another component in the Grid column template]({%slug grid-kb-row-selection-in-column-template%}). It applies for both row and cell selection.
236-
* If you are using a [row template]({%slug components/grid/features/templates%}#row-template) the Grid does not support cell selection. The row template removes the built-in cell instances and the HTML markup may not even include the expected number of cells.
236+
* If you are using a [row template]({%slug grid-templates-row%}) the Grid does not support cell selection. The row template removes the built-in cell instances and the HTML markup may not even include the expected number of cells.
237237

238238
## See Also
239239

components/grid/selection/rows.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ The [**Select All** checkbox in the Grid checkbox column]({%slug components/grid
199199
When using [Grid templates]({%slug components/grid/features/templates%}) with row selection:
200200

201201
* If you are using a [Grid column template]({%slug grid-templates-column%}) and you have a clickable element in the template, you can check the knowledge base article on [how to prevent row selection when the user clicks another component in the Grid column template]({%slug grid-kb-row-selection-in-column-template%}).
202-
* If you are using a [row template]({%slug components/grid/features/templates%}#row-template) the Grid cannot render a built-in [checkbox column]({%slug components/grid/columns/checkbox%}). You have to render checkboxes manually and handle their changed event to populate the `SelectedItems` collection of the Grid. You can find an example to get started in the following thread: [Grid Row Template with Selection - Unsure how to Bind to Selected Item](https://feedback.telerik.com/blazor/1463819-grid-row-template-with-selection-unsure-how-to-bind-to-selected-item).
202+
* If you are using a [row template]({%slug grid-templates-row%}) the Grid cannot render a built-in [checkbox column]({%slug components/grid/columns/checkbox%}). You have to render checkboxes manually and handle their changed event to populate the `SelectedItems` collection of the Grid. You can find an example to get started in the following thread: [Grid Row Template with Selection - Unsure how to Bind to Selected Item](https://feedback.telerik.com/blazor/1463819-grid-row-template-with-selection-unsure-how-to-bind-to-selected-item).
203203

204204
### Selection and Row Drag and Drop
205205

components/grid/templates/popup-form-template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ position: 50
1414
With the `FormTemplate` feature, you can customize the appearance and content of the create/edit Popup window of the Grid.
1515

1616
>caption In this article:
17-
* [Basics](#basics)
17+
* [Using the Popup Form Template](#using-the-popup-form-template)
1818
* [Specifics](#specifics)
1919
* [Example](#example)
2020

components/listview/templates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ https://docs.telerik.com/blazor-ui/components/listview/editing
102102

103103
## Header Template
104104

105-
This piece of code renders just above the items, but within the main listview wrapper. You would commonly use it to show a heading or other description of the data. You can also add buttons or other components that will invoke actions (such as [filter or sort the data source]({%slug listview-manual-operations%}#custom-operations), or [edit data]({%slug listview-editing%})).
105+
This piece of code renders just above the items, but within the main listview wrapper. You would commonly use it to show a heading or other description of the data. You can also add buttons or other components that will invoke actions (such as [filter or sort the data source]({%slug listview-manual-operations%}#filter-and-sort), or [edit data]({%slug listview-editing%})).
106106

107107
>caption Header Template in the ListView
108108

components/map/layers/marker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ To configure a Map layer of the Marker type:
2727
2. Set the `Type` parameter of the `MapLayer` to `Marker`.
2828
3. Set the `Data` parameter.
2929
4. Set the `LocationField` and `TitleField` parameters.
30-
5. (Optional) Provide the [tooltip settings](#marker-tooltip-settings) and choose the [Marker shape](#marker-shapes).
30+
5. (Optional) Provide the [tooltip settings](#setting-the-marker-tooltip) and choose the [Marker shape](#defining-the-marker-shapes).
3131

3232
The following example demonstrates how to configure the Marker layer of the Map.
3333

components/maskedtextbox/mask-prompt.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The Telerik MaskedTextbox provides a set of built-in rules that it recognizes as
4848
- `&` - Character (excluding `space`)
4949
- `C` - Character or `space`
5050

51-
>tip You can find some examples of different masks in the [Masks Live Demo](https://demos.telerik.com/blazor-ui/maskedtextbox/masks) and in the [Some Sample Masks]({%slug maskedtextbox-overview%}#some-sample-masks) section of the documentation.
51+
>tip You can find some examples of different masks in the [Masks Live Demo](https://demos.telerik.com/blazor-ui/maskedtextbox/masks) and in the [Some Sample Masks]({%slug maskedtextbox-overview%}#mask-examples) section of the documentation.
5252
5353
### Literals
5454

components/multicolumncombobox/columns/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ To bind data to the `<MultiColumnComboBoxColumn>` you can use the `Field`. This
2929
| `Class` | `string` | The CSS class that will be rendered on the column's content cells. |
3030
| `HeaderClass` | `string` | The CSS class that will be rendered on the column's header cell. |
3131
| `Title` | `string` | The string title rendered in the column header. If it is not explicitly declared the value of the `Field` will be rendered. |
32-
| `HeaderTemplate` | `RenderFragment` | The HeaderTemplate allows you to control the rendering of the column's header cell. Read more in the [Templates]({%slug multicolumncombobox-templates%}#headertemplate) article. |
33-
| `Template` | `RenderFragment<object>` | The Template allows you to control the rendering of the column's cells. Read more in the [Templates]({%slug multicolumncombobox-templates%}#template) article. |
32+
| `HeaderTemplate` | `RenderFragment` | The HeaderTemplate allows you to control the rendering of the column's header cell. Read more in the [Templates]({%slug multicolumncombobox-columns-templates%}#headertemplate ) article. |
33+
| `Template` | `RenderFragment<object>` | The Template allows you to control the rendering of the column's cells. Read more in the [Templates]({%slug multicolumncombobox-columns-templates%}#template) article. |
3434

3535
>caption MultiColumnComboBoxColumn with its features
3636

0 commit comments

Comments
 (0)