Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion components/dropdownlist/accessibility/wai-aria-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 %})
* [Accessibility Theme]({% slug themes-accessibility-swatch %})
* [Blazor DropDownList]({%slug components/dropdownlist/overview%})
4 changes: 4 additions & 0 deletions components/dropdownlist/appearance.md
Original file line number Diff line number Diff line change
Expand Up @@ -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%})
4 changes: 2 additions & 2 deletions components/dropdownlist/data-bind.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
1 change: 1 addition & 0 deletions components/dropdownlist/events.md
Original file line number Diff line number Diff line change
Expand Up @@ -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%})
2 changes: 1 addition & 1 deletion components/dropdownlist/filter.md
Original file line number Diff line number Diff line change
Expand Up @@ -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%})
3 changes: 2 additions & 1 deletion components/dropdownlist/grouping.md
Original file line number Diff line number Diff line change
Expand Up @@ -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%})
6 changes: 3 additions & 3 deletions components/dropdownlist/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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)

Expand Down Expand Up @@ -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)
6 changes: 5 additions & 1 deletion components/dropdownlist/pre-select-item.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,8 @@ Selected value: @selectedValue

IEnumerable<MyDdlModel> myDdlData = Enumerable.Range(1, 20).Select(x => new MyDdlModel { MyTextField = "item " + x, MyValueField = x });
}
````
````

## See Also

* [Blazor DropDownList]({%slug components/dropdownlist/overview%})
7 changes: 4 additions & 3 deletions components/dropdownlist/refresh-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
* [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%})
5 changes: 2 additions & 3 deletions components/dropdownlist/templates.md
Original file line number Diff line number Diff line change
Expand Up @@ -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%})
5 changes: 2 additions & 3 deletions components/dropdownlist/virtualization.md
Original file line number Diff line number Diff line change
Expand Up @@ -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%})
2 changes: 2 additions & 0 deletions components/grid/row-drag-drop.md
Original file line number Diff line number Diff line change
Expand Up @@ -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%})

Loading