Skip to content

Commit 44b1095

Browse files
committed
chore(common): fix links
1 parent 0fb40e4 commit 44b1095

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

components/daterangepicker/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ The `OnChange` event represents a user action - confirmation of the current valu
105105
106106
// the fields are of type object because you can use nullable or non-nullable DateTime
107107
// so you may need to cast them if you want to use the actual DateTime objects
108-
108+
````
109109

110110
## OnOpen
111111

components/drawer/data-bind.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This article has the following sections:
1818

1919
* The available (bindable) [features of a drawer item](#drawer-item-features).
2020
* How to match fields in the model with the drawer item [data bindings](#data-bindings).
21-
* [Example](#example---data-binding-to-non-default-field-names) of using non-default field names for data binding.
21+
* [Example](#example-data-binding-to-non-default-field-names) of using non-default field names for data binding.
2222

2323
## Drawer Item Features
2424

components/drawer/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ The Blazor Drawer provides various parameters to configure the component. Also c
109109
| Parameter | Type and Default Value | Description |
110110
| --- | --- | --- |
111111
| `Class` | `string` | Renders a custom CSS class to the `<div class="k-drawer-container">` element. |
112-
| `Expanded` | `bool` | Specifies whether the Drawer is expanded or collapsed. If this parameter is used to expand or collapse the component the animations will not be available. To use animations you have to use the Drawer's [Methods](#methods). It is possible, however, to use the value to implement custom layouts in the drawer [templates]({%slug drawer-templates%}) or in your own layout.|
112+
| `Expanded` | `bool` | Specifies whether the Drawer is expanded or collapsed. If this parameter is used to expand or collapse the component the animations will not be available. To use animations you have to use the Drawer's [Methods](#drawer-reference-and-methods). It is possible, however, to use the value to implement custom layouts in the drawer [templates]({%slug drawer-templates%}) or in your own layout.|
113113
| `Mode` | `DrawerMode` enum <br /> (`Overlay`) | Controls whether the Drawer is in `Push` or `Overlay` mode. [Read more about the supported modes]({%slug drawer-modes%}). |
114114
| `MiniMode` | `bool` | Controls whether there is [mini view]({%slug drawer-mini-mode%}) when the Drawer is collapsed. |
115115
| `Position` | `DrawerPosition` enum <br /> (`Start`) | Determines on which side of the `DrawerContent` the item list will render. |

components/editor/built-in-tools.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Here is a simple example that demonstrates how to use class names, command names
8383
* [Commands Without Built-in Tools](#commands-without-built-in-tools)
8484
* [Programmatic Command Execution](#programmatic-execution)
8585

86-
When [choosing which Editor tools to render]({%slug editor-toolbar%}#choose-toolbar-items), it is possible to [create a tools collection from scratch]({%slug editor-toolbar%}#create-a-toolbar-from-scratch) or [append additional tools to a preset collection]({%slug editor-toolbar%}#addremove-tools-from-existing-toolbar).
86+
When [choosing which Editor tools to render]({%slug editor-toolbar%}#choose-toolbar-items), it is possible to [create a tools collection from scratch]({%slug editor-toolbar%}#create-a-toolbar-from-scratch) or [append additional tools to a preset collection]({%slug editor-toolbar%}#add-remove-tools-from-existing-toolbar).
8787

8888
## Inline Tools
8989

@@ -518,7 +518,7 @@ Some Editor commands have no built-in tools. These commands can only be [invoked
518518

519519
You can invoke the built-in Editor commands from outside the component or from [custom tools]({%slug editor-custom-tools%}).
520520

521-
In order to do so, you need to use the [Editor reference]({%slug editor-overview%}#component-reference) and to call the [ExecuteAsync method]({%slug editor-overview%}#methods).
521+
In order to do so, you need to use the [Editor reference]({%slug editor-overview%}#editor-reference-and-methods) and to call the [ExecuteAsync method]({%slug editor-overview%}#editor-reference-and-methods).
522522

523523
>tip Use the reference tables above to find the command name and its arguments for the command you want to invoke.
524524

components/editor/custom-tools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ To create a custom tool:
3838

3939
## Examples
4040

41-
When [choosing which Editor tools to render]({%slug editor-toolbar%}#choose-toolbar-items), it is possible to [create a tools collection from scratch]({%slug editor-toolbar%}#create-a-toolbar-from-scratch) or [append additional tools to a preset collection]({%slug editor-toolbar%}#addremove-tools-from-existing-toolbar).
41+
When [choosing which Editor tools to render]({%slug editor-toolbar%}#choose-toolbar-items), it is possible to [create a tools collection from scratch]({%slug editor-toolbar%}#create-a-toolbar-from-scratch) or [append additional tools to a preset collection]({%slug editor-toolbar%}#add-remove-tools-from-existing-toolbar).
4242

4343
In this section you can find the following examples:
4444

components/editor/toolbar.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This article contains the following sections:
2020
* [Basics](#basics)
2121
* [Built-in Tool Lists](#built-in-tool-lists)
2222
* [Choose Toolbar Items](#choose-toolbar-items)
23-
* [Add/Remove Tools From Existing Toolbar](#addremove-tools-from-existing-toolbar)
23+
* [Add/Remove Tools From Existing Toolbar](#add-remove-tools-from-existing-toolbar)
2424
* [Create a Toolbar From Scratch](#create-a-toolbar-from-scratch)
2525
* [Customize Built-in Tools](#customize-built-in-tools)
2626

@@ -58,7 +58,7 @@ The `Tools` collection is a `List<IEditorTool>`.
5858

5959
Editor tools can be individual buttons (such as Undo, Bold), dropdowns (such as Format or FontSize), and button groups that hold several buttons.
6060

61-
To add a button, add a `new <Command>()` where `Command` is the name of the tool from [this table]({%slug editor-built-in-tools%}#built-in-tools). The VS Intellisense can also show you the classes in the `Telerik.Blazor.Components.Editor.` namespace.
61+
To add a button, add a `new <Command>()` where `Command` is the name of the tool from [this table]({%slug editor-built-in-tools%}#built-in-tools-and-commands). The VS Intellisense can also show you the classes in the `Telerik.Blazor.Components.Editor.` namespace.
6262

6363
To define a button group, add a `new EditorButtonGroup(comma-separated collection of button commands)`.
6464

components/filemanager/overview.md

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

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

340-
* Handling the `OnRead` event to provide only the current folder data - [FileManager `OnRead`]({%slug filemanager-events%}#onread).
340+
* Handling the `OnRead` event to provide only the current folder data - [FileManager `OnRead`]({%slug filemanager-events%}#read-event).
341341

342342
## Views
343343

0 commit comments

Comments
 (0)