diff --git a/components/dropdownlist/accessibility/wai-aria-support.md b/components/dropdownlist/accessibility/wai-aria-support.md index 3f9397f33a..55713fe6a6 100644 --- a/components/dropdownlist/accessibility/wai-aria-support.md +++ b/components/dropdownlist/accessibility/wai-aria-support.md @@ -113,4 +113,5 @@ The DropDownList has been tested with the following screen readers and browsers * [Blazor DropDownList Accessibility and Keyboard Navigation (Demo)](https://demos.telerik.com/blazor-ui/dropdownlist/keyboard-navigation) * [Accessibility in Telerik UI for Blazor]({% slug accessibility-overview %}) -* [Accessibility Theme]({% slug themes-accessibility-swatch %}) \ No newline at end of file +* [Accessibility Theme]({% slug themes-accessibility-swatch %}) +* [Blazor DropDownList]({%slug components/dropdownlist/overview%}) \ No newline at end of file diff --git a/components/dropdownlist/appearance.md b/components/dropdownlist/appearance.md index 55bf263935..c091379eab 100644 --- a/components/dropdownlist/appearance.md +++ b/components/dropdownlist/appearance.md @@ -179,3 +179,7 @@ The `FillMode` controls how the TelerikDropDownList is filled. You can set it to ```` @[template](/_contentTemplates/common/themebuilder-section.md#appearance-themebuilder) + +## See Also + +* [Blazor DropDownList]({%slug components/dropdownlist/overview%}) \ No newline at end of file diff --git a/components/dropdownlist/data-bind.md b/components/dropdownlist/data-bind.md index 703d6846f4..595befa52a 100644 --- a/components/dropdownlist/data-bind.md +++ b/components/dropdownlist/data-bind.md @@ -181,5 +181,5 @@ The DropDownList is a generic component and its type depends on the type of its ## See Also -* [DropDownList Overview]({%slug components/dropdownlist/overview%}) -* [Live Demo: DropDownList](https://demos.telerik.com/blazor-ui/dropdownlist/overview) +* [Blazor DropDownList]({%slug components/dropdownlist/overview%}) +* [Live Demo: DropDownList](https://demos.telerik.com/blazor-ui/dropdownlist/overview) \ No newline at end of file diff --git a/components/dropdownlist/events.md b/components/dropdownlist/events.md index 2f39a00954..556ef347a4 100644 --- a/components/dropdownlist/events.md +++ b/components/dropdownlist/events.md @@ -399,3 +399,4 @@ The `OnBlur` event fires when the component loses focus. * [ValueChanged and Validation]({%slug value-changed-validation-model%}) * [Fire OnChange Only Once]({%slug ddl-kb-onchange-fires-twice%}) +* [Blazor DropDownList]({%slug components/dropdownlist/overview%}) \ No newline at end of file diff --git a/components/dropdownlist/filter.md b/components/dropdownlist/filter.md index ae20b5aa22..55f5fa8338 100644 --- a/components/dropdownlist/filter.md +++ b/components/dropdownlist/filter.md @@ -107,5 +107,5 @@ By default, the filter input in the popup is empty. Set the desired hint in it t ## See Also * [Live Demo: DropDownList Filtering](https://demos.telerik.com/blazor-ui/dropdownlist/filtering) - * [Custom Filtering by Multiple Fields]({%slug dropdowns-kb-search-in-multiple-fields%}) +* [Blazor DropDownList]({%slug components/dropdownlist/overview%}) \ No newline at end of file diff --git a/components/dropdownlist/grouping.md b/components/dropdownlist/grouping.md index 0a132c9266..7c9b74c2a4 100644 --- a/components/dropdownlist/grouping.md +++ b/components/dropdownlist/grouping.md @@ -72,4 +72,5 @@ The group headers can stick to the top of the dropdown during scrolling. In othe ## See Also - * [Live Demo: DropDownList Grouping](https://demos.telerik.com/blazor-ui/dropdownlist/grouping) +* [Live Demo: DropDownList Grouping](https://demos.telerik.com/blazor-ui/dropdownlist/grouping) +* [Blazor DropDownList]({%slug components/dropdownlist/overview%}) \ No newline at end of file diff --git a/components/dropdownlist/overview.md b/components/dropdownlist/overview.md index 7dd885a146..ae06577866 100644 --- a/components/dropdownlist/overview.md +++ b/components/dropdownlist/overview.md @@ -14,7 +14,7 @@ The Blazor DropDownList component allows the user to choose an option from a pre ## Creating Blazor DropDownList -1. Use the `TelerikDropDownList` tag to add the component to your razor page. +1. Use the `TelerikDropDownList` tag to add the Blazor dropdown list to your razor page. 1. Populate its `Data` property with the collection of items you want to appear in the dropdown list. 1. Set the `TextField` and `ValueField` properties to point to the corresponding names of the model. 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 ## DropDownList Parameters ->caption The Blazor DropDownList provides various parameters that allow you to configure the component: +>caption The Blazor dropdown list provides various parameters that allow you to configure the component: @[template](/_contentTemplates/common/parameters-table-styles.md#table-layout) @@ -266,4 +266,4 @@ By default, if no `Value` is provided and no `DefaultText` is defined, the DropD * [Data Binding]({%slug components/dropdownlist/databind%}) * [Live Demo: DropDownList](https://demos.telerik.com/blazor-ui/dropdownlist/overview) -* [Live Demo: DropDownList Validation](https://demos.telerik.com/blazor-ui/dropdownlist/validation) +* [Live Demo: DropDownList Validation](https://demos.telerik.com/blazor-ui/dropdownlist/validation) \ No newline at end of file diff --git a/components/dropdownlist/pre-select-item.md b/components/dropdownlist/pre-select-item.md index dc1c92185e..9560173691 100644 --- a/components/dropdownlist/pre-select-item.md +++ b/components/dropdownlist/pre-select-item.md @@ -45,4 +45,8 @@ Selected value: @selectedValue IEnumerable myDdlData = Enumerable.Range(1, 20).Select(x => new MyDdlModel { MyTextField = "item " + x, MyValueField = x }); } -```` \ No newline at end of file +```` + +## See Also + +* [Blazor DropDownList]({%slug components/dropdownlist/overview%}) \ No newline at end of file diff --git a/components/dropdownlist/refresh-data.md b/components/dropdownlist/refresh-data.md index 05e4fd6af2..e6bb06593e 100644 --- a/components/dropdownlist/refresh-data.md +++ b/components/dropdownlist/refresh-data.md @@ -210,6 +210,7 @@ You can refresh the data of the DropDownList by using the `Rebind` method expose ## See Also - * [ObservableCollection]({%slug common-features-observable-data%}) - * [INotifyCollectionChanged Interface](https://docs.microsoft.com/en-us/dotnet/api/system.collections.specialized.inotifycollectionchanged?view=netframework-4.8) - * [Live Demos](https://demos.telerik.com/blazor-ui) \ No newline at end of file +* [ObservableCollection]({%slug common-features-observable-data%}) +* [INotifyCollectionChanged Interface](https://docs.microsoft.com/en-us/dotnet/api/system.collections.specialized.inotifycollectionchanged?view=netframework-4.8) +* [Live Demos](https://demos.telerik.com/blazor-ui) +* [Blazor DropDownList]({%slug components/dropdownlist/overview%}) \ No newline at end of file diff --git a/components/dropdownlist/templates.md b/components/dropdownlist/templates.md index 3ca4c38526..85a86728cf 100644 --- a/components/dropdownlist/templates.md +++ b/components/dropdownlist/templates.md @@ -105,6 +105,5 @@ The `ValueTemplate` exposes a `context` which represents the selected item objec ## See Also - * [Live Demo: DropDownList Templates](https://demos.telerik.com/blazor-ui/dropdownlist/templates) - - +* [Live Demo: DropDownList Templates](https://demos.telerik.com/blazor-ui/dropdownlist/templates) +* [Blazor DropDownList]({%slug components/dropdownlist/overview%}) \ No newline at end of file diff --git a/components/dropdownlist/virtualization.md b/components/dropdownlist/virtualization.md index 85d6236e3f..e5f35de8a0 100644 --- a/components/dropdownlist/virtualization.md +++ b/components/dropdownlist/virtualization.md @@ -176,6 +176,5 @@ Run this and see how you can display, scroll and filter over 10k records in the ## See Also - * [Live Demo: DropDownList Virtualization](https://demos.telerik.com/blazor-ui/dropdownlist/virtualization) - - +* [Live Demo: DropDownList Virtualization](https://demos.telerik.com/blazor-ui/dropdownlist/virtualization) +* [Blazor DropDownList]({%slug components/dropdownlist/overview%}) \ No newline at end of file diff --git a/components/grid/row-drag-drop.md b/components/grid/row-drag-drop.md index 49791c58ab..721fa12248 100644 --- a/components/grid/row-drag-drop.md +++ b/components/grid/row-drag-drop.md @@ -1771,3 +1771,5 @@ List on known limitations for the Grid Drag and Drop features: * [Live Demo: Grid Drag and Drop](https://demos.telerik.com/blazor-ui/grid/drag-drop) * [Drag and Drop between Different Parent Components]({%slug grid-kb-drag-drop-in-different-components%}) * [Grid API Reference](/blazor-ui/api/Telerik.Blazor.Components.TelerikGrid-1) +* [Blazor Grid]({%slug grid-overview%}) +