Skip to content

Commit 03ae8b0

Browse files
authored
docs(Common): Fix incorrect anchors (#3183)
1 parent a8f0f6c commit 03ae8b0

File tree

32 files changed

+42
-58
lines changed

32 files changed

+42
-58
lines changed

common-features/icons.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ position: 20
1313

1414
Telerik UI for Blazor provides a large set of built-in icons. There are two ways to consume and render them: as font icons or as SVG icons. It is also possible to use custom Blazor icons, or define an application-wide setting, which affects the type of icons in all Telerik Blazor components.
1515

16-
The Telerik Blazor components generate the same type of icons (font icons or SVG icons), [depending on the `TelerikRootComponent` configuration](#set-global-icon-type). However, Telerik UI for Blazor includes standalone [`FontIcon`](#fonticon-component) and [`SvgIcon`](#svgicon-component) components, which can be used at the same time.
16+
The Telerik Blazor components generate the same type of icons (font icons or SVG icons), [depending on the `TelerikRootComponent` configuration](#set-global-blazor-icon-type). However, Telerik UI for Blazor includes standalone [`FontIcon`](#fonticon-component) and [`SvgIcon`](#svgicon-component) components, which can be used at the same time.
1717

1818
In general, font icons produce a smaller HTML footprint and the glyph can be overridden with CSS. SVG icons provide better accessibility and can use multiple colors in a single icon.
1919

components/autocomplete/data-bind.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ There are two key ways to bind data:
1919
* [Strings and Value Types](#strings-and-value-types)
2020
* [Model](#bind-to-a-model)
2121

22-
There are also some [considerations](#considerations) to keep in mind.
23-
2422
@[template](/_contentTemplates/common/get-model-from-dropdowns.md#get-model-from-dropdowns)
2523

2624
## Strings and Value Types

components/barcodes/qrcode/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The Blazor Barcode provides various parameters that allow you to configure the c
5555
| `QRCodeEncoding` | `enum` | The encoding mode used to encode the value. |
5656
| `QRCodeErrorCorrection` | `enum` | The error correction level used to encode the value. |
5757
| `Value` | `string` | Defines the initial value of the QRCode. |
58-
| `Size` | `string` | Specifies the size (`Width` and `Height`) of a QR code in pixels (i.e. "200px") as the QRCode is a square. You can read more details for the dimension properties in the [Dimensions article](slug:common-features/dimensions). Setting both `Size` and `Width` and/or `Height` will throw an error. Setting different values to `Width` and `Height` will also cause an issue. To set an optimal `Size`, consider the expected scanning distance and data capacity. |
58+
| `Size` | `string` | Specifies the size (`Width` and `Height`) of a QR code in pixels (i.e. "200px") as the QRCode is a square. You can read more details for the dimension properties in the [Dimensions article](slug:common-features/dimensions). Setting both `Size` and `Width` or `Height` will throw an error. Setting different values to `Width` and `Height` will also cause an issue. To set an optimal `Size`, consider the expected scanning distance and data capacity. |
5959
| `Width` | `string` | Sets the width of the QRCode. If `Height` is set and the `Size` property is not set, the same value as `Width` should be set to `Height`. |
6060
| `Height` | `string` | Sets the height of the QRCode. If `Height` is set and the `Size` property is not set, the same value as `Height` should be set to `Width`. |
6161
| `Class` | `string` | The CSS class that will be rendered on the main wrapping element of the QRCode component. |

components/chart/multiple-axes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@ The way multiple axes are declared depends on the [chart series type](slug:compo
3636

3737
### Categorical Charts
3838

39-
1. Define the extra axis in the corresponding `ChartCategoryAxes` and/or `ChartValueAxes` tags.
39+
1. Define the extra axis in the corresponding `ChartCategoryAxes` or `ChartValueAxes` tags.
4040
2. Set its `Name` property as desired. By default, a series uses the first axis.
4141
3. Provide the `Name` value to the series you want to use it through its `Axis` and `CategoryAxis` for the `Y` and `X` axis respectively.
4242

4343

4444
### Numerical Charts
4545

46-
1. Define the extra axis in the corresponding `ChartXAxes` and/or `ChartYAxes` tags.
46+
1. Define the extra axis in the corresponding `ChartXAxes` or `ChartYAxes` tags.
4747
2. Set its `Name` property as desired. By default, a series uses the first axis.
4848
3. Provide the `Name` value to the series you want to use it through its `yAxis` and `xAxis` properties.
4949

components/contextmenu/integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ In this example, the context menu is used to select/deselect items, put an item
265265
// such as put a row in edit mode or select it
266266
switch (item.CommandName)
267267
{
268-
case "BeginEdit": // read more at https://docs.telerik.com/blazor-ui/components/grid/state#initiate-editing-or-inserting-of-an-item
268+
case "BeginEdit": // read more at https://www.telerik.com/blazor-ui/documentation/knowledge-base/grid-add-edit-state
269269
var currState = GridRef.GetState();
270270
currState.InsertedItem = null;
271271
SampleData itemToEdit = SampleData.GetClonedInstance(GridData.Where(itm => itm.ID == SelectedPerson.ID).FirstOrDefault());

components/diagram/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ As a rule of thumb, the Diagram markup follows these naming conventions:
261261
262262
The [Blazor Diagram component exposes methods](slug:Telerik.Blazor.Components.TelerikDiagram#methods) for programmatic operation. To use them, define a reference to the component instance with the `@ref` directive attribute. Blazor populates component references in `OnAfterRenderAsync`, so they are not available earier.
263263
264-
See a full example in section [Create Diagram from JSON](#create-diagram-from-json) above.
264+
See a full example in section [Create Diagram from JSON](#define-shapes-and-connections-in-json) above.
265265
266266
>caption Using the Diagram reference
267267

components/filemanager/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ The following list of resources provides details and examples for data binding a
336336

337337
* Using hierarchical data source with item collections nested in each item - [Bind FileManager to Hierarchical Data](slug:filemanager-data-binding-hierarchical-data).
338338

339-
* Handling the `OnRead` event to provide only the current folder data - [FileManager `OnRead`](slug:filemanager-events#read-event).
339+
* Handling the `OnRead` event to provide only the current folder data - [FileManager `OnRead`](slug:filemanager-events#onread).
340340

341341
## Views
342342

components/gantt/state.md

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -102,19 +102,12 @@ The following information is present in the Gantt state:
102102

103103
You can find the following examples in this section:
104104

105-
- [Gantt State](#gantt-state)
106-
- [Basics](#basics)
107-
- [Events](#events)
108-
- [Methods](#methods)
109-
- [Information in the Gantt State](#information-in-the-gantt-state)
110-
- [Examples](#examples)
111-
- [Set Default (Initial) State](#set-default-initial-state)
112-
- [Save and Load Gantt State from Browser LocalStorage](#save-and-load-gantt-state-from-browser-localstorage)
113-
- [Set Gantt Options Through State](#set-gantt-options-through-state)
114-
- [Get and Override User Action That Changes The Gantt](#get-and-override-user-action-that-changes-the-gantt)
115-
- [Initiate Editing or Inserting of an Item](#initiate-editing-or-inserting-of-an-item)
116-
- [Get Current Columns Visibility, Order, Field](#get-current-columns-visibility-order-field)
117-
- [See Also](#see-also)
105+
- [Set Default (Initial) State](#set-default-initial-state)
106+
- [Save and Load Gantt State from Browser LocalStorage](#save-and-load-gantt-state-from-browser-localstorage)
107+
- [Set Gantt Options Through State](#set-gantt-options-through-state)
108+
- [Get and Override User Action That Changes The Gantt](#get-and-override-user-action-that-changes-the-gantt)
109+
- [Initiate Editing or Inserting of an Item](#initiate-editing-or-inserting-of-an-item)
110+
- [Get Current Columns Visibility, Order, Field](#get-current-columns-visibility-order-field)
118111

119112
### Set Default (Initial) State
120113

components/grid/columns/width.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The Grid column width settings can vary and result in the following behaviors:
5454
</tr>
5555
</table>
5656

57-
To allow the users to adjust or auto-fit the column widths to the content, enable [Grid column resizing](slug:components/grid/columns/resize). You can also [resize columns through the Grid state](slug:grid-state#setstateasync) or [auto-fit columns programmatically](slug:components/grid/columns/resize#autofit-columns).
57+
To allow the users to adjust or auto-fit the column widths to the content, enable [Grid column resizing](slug:components/grid/columns/resize). You can also [resize columns through the Grid state](slug:grid-state#methods) or [auto-fit columns programmatically](slug:components/grid/columns/resize#autofit-columns).
5858

5959
> Single table rendering and automatic table layout are not supported.
6060

components/grid/editing/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ All events in the [Events table](#events), except `OnModelInit`, provide a [`Gri
150150
| Property&nbsp;Name | Type | Description |
151151
| --- | --- | --- |
152152
| `Field` | `string` | The [column `Field` name](slug:components/grid/columns/bound#data-binding). Applicable only for [in-cell edit mode](slug:grid-editing-incell). |
153-
| `IsCancelled` | `bool` | Defines if the user action should be prevented. See the [Comparison table](#comparison) below for details. |
153+
| `IsCancelled` | `bool` | Defines if the user action should be prevented. See the [Events table](#events) for details. |
154154
| `IsNew` | `bool` | Defines if `Item` is a newly added row or an existing row. |
155155
| `Item` | `object` | The data item, which the user is adding, deleting, or editing. Cast it to the Grid model type. |
156156
| `Value` | `object` | The data item value, which the user is editing. You can cast it to the correct type, based on the `Field`. Applicable only for [in-cell edit mode](slug:grid-editing-incell). |

0 commit comments

Comments
 (0)