Skip to content

Commit b4102b6

Browse files
authored
chore: apply seo recommendatons (#2609)
* chore: apply seo recommendatons * chore: add dropdownlist overview page link
1 parent 4dfbfcf commit b4102b6

File tree

12 files changed

+30
-18
lines changed

12 files changed

+30
-18
lines changed

components/dropdownlist/accessibility/wai-aria-support.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,4 +113,5 @@ The DropDownList has been tested with the following screen readers and browsers
113113

114114
* [Blazor DropDownList Accessibility and Keyboard Navigation (Demo)](https://demos.telerik.com/blazor-ui/dropdownlist/keyboard-navigation)
115115
* [Accessibility in Telerik UI for Blazor]({% slug accessibility-overview %})
116-
* [Accessibility Theme]({% slug themes-accessibility-swatch %})
116+
* [Accessibility Theme]({% slug themes-accessibility-swatch %})
117+
* [Blazor DropDownList]({%slug components/dropdownlist/overview%})

components/dropdownlist/appearance.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,3 +179,7 @@ The `FillMode` controls how the TelerikDropDownList is filled. You can set it to
179179
````
180180

181181
@[template](/_contentTemplates/common/themebuilder-section.md#appearance-themebuilder)
182+
183+
## See Also
184+
185+
* [Blazor DropDownList]({%slug components/dropdownlist/overview%})

components/dropdownlist/data-bind.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,5 +181,5 @@ The DropDownList is a generic component and its type depends on the type of its
181181

182182
## See Also
183183

184-
* [DropDownList Overview]({%slug components/dropdownlist/overview%})
185-
* [Live Demo: DropDownList](https://demos.telerik.com/blazor-ui/dropdownlist/overview)
184+
* [Blazor DropDownList]({%slug components/dropdownlist/overview%})
185+
* [Live Demo: DropDownList](https://demos.telerik.com/blazor-ui/dropdownlist/overview)

components/dropdownlist/events.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -399,3 +399,4 @@ The `OnBlur` event fires when the component loses focus.
399399

400400
* [ValueChanged and Validation]({%slug value-changed-validation-model%})
401401
* [Fire OnChange Only Once]({%slug ddl-kb-onchange-fires-twice%})
402+
* [Blazor DropDownList]({%slug components/dropdownlist/overview%})

components/dropdownlist/filter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,5 +107,5 @@ By default, the filter input in the popup is empty. Set the desired hint in it t
107107
## See Also
108108

109109
* [Live Demo: DropDownList Filtering](https://demos.telerik.com/blazor-ui/dropdownlist/filtering)
110-
111110
* [Custom Filtering by Multiple Fields]({%slug dropdowns-kb-search-in-multiple-fields%})
111+
* [Blazor DropDownList]({%slug components/dropdownlist/overview%})

components/dropdownlist/grouping.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,5 @@ The group headers can stick to the top of the dropdown during scrolling. In othe
7272

7373
## See Also
7474

75-
* [Live Demo: DropDownList Grouping](https://demos.telerik.com/blazor-ui/dropdownlist/grouping)
75+
* [Live Demo: DropDownList Grouping](https://demos.telerik.com/blazor-ui/dropdownlist/grouping)
76+
* [Blazor DropDownList]({%slug components/dropdownlist/overview%})

components/dropdownlist/overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The Blazor DropDownList component allows the user to choose an option from a pre
1414

1515
## Creating Blazor DropDownList
1616

17-
1. Use the `TelerikDropDownList` tag to add the component to your razor page.
17+
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.
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.
@@ -78,7 +78,7 @@ The Blazor DropDownList @[template](/_contentTemplates/dropdowns/features.md#gro
7878

7979
## DropDownList Parameters
8080

81-
>caption The Blazor DropDownList provides various parameters that allow you to configure the component:
81+
>caption The Blazor dropdown list provides various parameters that allow you to configure the component:
8282
8383
@[template](/_contentTemplates/common/parameters-table-styles.md#table-layout)
8484

@@ -266,4 +266,4 @@ By default, if no `Value` is provided and no `DefaultText` is defined, the DropD
266266

267267
* [Data Binding]({%slug components/dropdownlist/databind%})
268268
* [Live Demo: DropDownList](https://demos.telerik.com/blazor-ui/dropdownlist/overview)
269-
* [Live Demo: DropDownList Validation](https://demos.telerik.com/blazor-ui/dropdownlist/validation)
269+
* [Live Demo: DropDownList Validation](https://demos.telerik.com/blazor-ui/dropdownlist/validation)

components/dropdownlist/pre-select-item.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,8 @@ Selected value: @selectedValue
4545
4646
IEnumerable<MyDdlModel> myDdlData = Enumerable.Range(1, 20).Select(x => new MyDdlModel { MyTextField = "item " + x, MyValueField = x });
4747
}
48-
````
48+
````
49+
50+
## See Also
51+
52+
* [Blazor DropDownList]({%slug components/dropdownlist/overview%})

components/dropdownlist/refresh-data.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,6 +210,7 @@ You can refresh the data of the DropDownList by using the `Rebind` method expose
210210

211211
## See Also
212212

213-
* [ObservableCollection]({%slug common-features-observable-data%})
214-
* [INotifyCollectionChanged Interface](https://docs.microsoft.com/en-us/dotnet/api/system.collections.specialized.inotifycollectionchanged?view=netframework-4.8)
215-
* [Live Demos](https://demos.telerik.com/blazor-ui)
213+
* [ObservableCollection]({%slug common-features-observable-data%})
214+
* [INotifyCollectionChanged Interface](https://docs.microsoft.com/en-us/dotnet/api/system.collections.specialized.inotifycollectionchanged?view=netframework-4.8)
215+
* [Live Demos](https://demos.telerik.com/blazor-ui)
216+
* [Blazor DropDownList]({%slug components/dropdownlist/overview%})

components/dropdownlist/templates.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,5 @@ The `ValueTemplate` exposes a `context` which represents the selected item objec
105105

106106
## See Also
107107

108-
* [Live Demo: DropDownList Templates](https://demos.telerik.com/blazor-ui/dropdownlist/templates)
109-
110-
108+
* [Live Demo: DropDownList Templates](https://demos.telerik.com/blazor-ui/dropdownlist/templates)
109+
* [Blazor DropDownList]({%slug components/dropdownlist/overview%})

0 commit comments

Comments
 (0)