Skip to content

Commit b9aaab2

Browse files
committed
Fix slugs
1 parent 3784350 commit b9aaab2

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

components/autocomplete/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ The <a href="https://www.telerik.com/blazor-ui/autocomplete" target="_blank">Bla
1616

1717
1. Use the `TelerikAutoComplete` tag to add the component to your razor page.
1818
1. Populate the `Data` property with the collection of items that you want to appear in the dropdown.
19-
1. [Bind the value of the component](slug:get-started-value-vs-data-binding #value-binding) to the same type as the member of the `ValueField` parameter.
19+
1. [Bind the value of the component](slug:get-started-value-vs-data-binding#value-binding) to the same type as the member of the `ValueField` parameter.
2020
1. (Optional) Enable features like placeholder text and clear button.
2121

2222
>caption AutoComplete with two-way value binding and data binding to collection of strings

components/combobox/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The <a href="https://www.telerik.com/blazor-ui/combobox" target="_blank">Blazor
1717
1. Use the `TelerikComboBox` tag to add the component to your razor page.
1818
1. Populate the `Data` property with the collection of items that you want to appear in the dropdown.
1919
1. Set the `TextField` and `ValueField` properties to point to the corresponding names of the model
20-
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.
20+
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

2323
>caption Combobox [data binding](slug:components/combobox/databind) with two-way value binding

components/dropdownlist/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The Blazor DropDownList component allows the user to choose an option from a pre
1717
1. Use the `TelerikDropDownList` tag to add the Blazor dropdown list to your razor page.
1818
1. Populate its `Data` property with the collection of items you want to appear in the dropdown list.
1919
1. Set the `TextField` and `ValueField` properties to point to the corresponding names of the model.
20-
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.
20+
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

2323
>caption DropDownList [data binding](slug:components/dropdownlist/databind), two-way value binding, and main features

components/multicolumncombobox/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The <a href="https://www.telerik.com/blazor-ui/multicolumncombobox" target="_bla
1818
1. Use the `<TelerikMultiColumnComboBox>` tag.
1919
1. Populate the `Data` parameter with the collection that you want to appear in the dropdown.
2020
1. Set the `TextField` and `ValueField` parameters to point to the corresponding property names of the model.
21-
1. [Bind the component `Value`](slug:get-started-value-vs-data-binding #value-binding) to a variable of the same type as the one of the `ValueField`.
21+
1. [Bind the component `Value`](slug:get-started-value-vs-data-binding#value-binding) to a variable of the same type as the one of the `ValueField`.
2222
1. Add `MultiColumnComboBoxColumn` instances under the `MultiColumnComboBoxColumns` tag. The `Field` parameter of each column must point to a property in the model.
2323

2424
>caption MultiColumnComboBox data binding with two-way value binding

components/multiselect/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The <a href="https://www.telerik.com/blazor-ui/multiselect" target="_blank">Blaz
1818

1919
1. Populate the `Data` property with the collection of items that you want to appear in the dropdown.
2020

21-
1. [Bind the value of the component](slug:get-started-value-vs-data-binding #value-binding) to a collection of the same type as the type defined in the `ValueField` parameter.
21+
1. [Bind the value of the component](slug:get-started-value-vs-data-binding#value-binding) to a collection of the same type as the type defined in the `ValueField` parameter.
2222

2323
1. (Optional) Enable features like placeholder text, clear button, and AutoClose.
2424

0 commit comments

Comments
 (0)