Skip to content

Commit e2c29f1

Browse files
chore(docs): fixing broken links
1 parent dc8628c commit e2c29f1

File tree

15 files changed

+15
-15
lines changed

15 files changed

+15
-15
lines changed

accessibility/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Accessibility consists of several aspects:
2222

2323
A [Voluntary Product Accessibility Template (VPAT®)](https://www.section508.gov/sell/vpat/) is a document that explains how information and communication technology (ICT) products such as software, hardware, electronic content, and support documentation meet (conform to) the Revised 508 Standards for IT accessibility.
2424

25-
> You can review and download the latest version of the Telerik UI for Blazor VPAT document <a href="assets/BlazorVPAT.doc" download>here</a>.
25+
> You can review and download the latest version of the Telerik UI for Blazor VPAT document [here](./assets/BlazorVPAT.doc).
2626
2727
## See Also
2828

components/autocomplete/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ User input: @AutoCompleteValue
4141
}
4242
````
4343

44-
>tip If you want to get a value identifier for the items in the dropdown instead of their text, consider the [ComboBox component](../combobox/overview). The **AutoComplete** is a **free text** input that accepts any text the user writes, not just the suggestions from the dropdown. Thus, the `Value` of the AutoComplete is always a `string`, while the ComboBox can provide you with a `number` or a `Guid`, not only a `string`.
44+
>tip If you want to get a value identifier for the items in the dropdown instead of their text, consider the [ComboBox component](slug://components/combobox/overview). The **AutoComplete** is a **free text** input that accepts any text the user writes, not just the suggestions from the dropdown. Thus, the `Value` of the AutoComplete is always a `string`, while the ComboBox can provide you with a `number` or a `Guid`, not only a `string`.
4545
4646
## Data Binding
4747

components/calendar/multiview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Additionally, you may configure the orientation of the views through the `Orient
3030
</TelerikCalendar>
3131
````
3232

33-
>tip You can still use the other features of the calendar like setting a starting `Date` and [Selection](selection), or the `Min` and `Max` constraints.
33+
>tip You can still use the other features of the calendar like setting a starting `Date` and [Selection](slug://components/calendar/selection), or the `Min` and `Max` constraints.
3434
3535

3636
## See Also

components/chart/data-bind.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ Separate fields for series categories
159159
}
160160
````
161161

162-
>tip You can define [multiple x-axes](multiple-axes) to avoid this behavior and have each series populate its own x-axis.
162+
>tip You can define [multiple x-axes](slug://components/chart/multiple-axes) to avoid this behavior and have each series populate its own x-axis.
163163
164164
>caption If category values match, they will be combined
165165

components/combobox/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ When using `OnRead`, make sure to set `TItem` and `TValue`.
244244
}
245245
````
246246

247-
>tip This example uses plain strings for brevity, you can use full models - see the [data binding](data-bind) article for examples. You can also use [custom values](custom-value).
247+
>tip This example uses plain strings for brevity, you can use full models - see the [data binding](slug://components/combobox/databind) article for examples. You can also use [custom values](slug://components/combobox/custom-value).
248248
249249

250250
>caption Filter large local data through the Telerik DataSource extensions

components/combobox/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The <a href="https://www.telerik.com/blazor-ui/combobox" target="_blank">Blazor
2020
1. [Bind the value of the component]({%slug get-started-value-vs-data-binding %}#value-binding) to a variable of the same type as the type defined in the `ValueField` parameter.
2121
1. (optional) enable features like filtering and clear button
2222

23-
>caption Combobox [data binding](data-bind) with two-way value binding
23+
>caption Combobox [data binding](slug://components/combobox/databind) with two-way value binding
2424
2525
````CSHTML
2626
Selected value: @selectedValue

components/dropdownlist/events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ You can also call remote data through `async` operations.
167167
}
168168
````
169169

170-
>tip This example uses plain strings for brevity, you can use full models - see the [data binding](data-bind) article for examples.
170+
>tip This example uses plain strings for brevity, you can use full models - see the [data binding](slug://components/dropdownlist/databind) article for examples.
171171
172172

173173
>caption Filter large local data through the Telerik DataSource extensions

components/dropdownlist/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The Blazor DropDownList component allows the user to choose an option from a pre
2020
1. [Bind the value of the component]({%slug get-started-value-vs-data-binding %}#value-binding) to a variable of the same type as the type defined in the `ValueField` parameter.
2121
1. (optional) Set the `Value` property to the initial value of the model.
2222

23-
>caption DropDownList [data binding](data-bind), two-way value binding, and main features
23+
>caption DropDownList [data binding](slug://components/dropdownlist/databind), two-way value binding, and main features
2424
2525
````RAZOR
2626
Selected value: @selectedValue

components/grid/columns/auto-generated.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ This example shows how to:
192192
* Make multiple selection
193193
* Add paging to the Grid
194194

195-
>caption Observe the behavior of auto-generated columns with [Editing operations](../editing/overview), [Selection](../selection/overview), [Paging](../paging) and using the custom attributes.
195+
>caption Observe the behavior of auto-generated columns with [Editing operations](slug://components/grid/editing/overview), [Selection](slug://grid-selection-overview), [Paging](slug://components/grid/features/paging) and using the custom attributes.
196196
197197
````CSHTML
198198
@using System.ComponentModel.DataAnnotations

components/grid/columns/bound.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ You can use the following properties on bound columns:
162162
>tip You can optimize database queries in two ways:
163163
>
164164
> * Use an `IQueryable<MyModel>` collection for the grid `Data`. The grid will build a LINQ expression internally that will be resolved only when needed. This can be useful when the `Data` comes from something like an EntityFramework context.
165-
> * Implement [manual data source operations](../manual-operations) and implement the desired query yourself.
165+
> * Implement [manual data source operations](slug://components/grid/manual-operations) and implement the desired query yourself.
166166
167167
## See Also
168168

0 commit comments

Comments
 (0)