blazor-devexpress-dot-blazor-dot-dxcombobox-2.md
A text editor that allows users to select predefined items from the drop-down list or type custom values.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public class DxComboBox<TData, TValue> :
DxDropDownListEditorBase<TData, TValue>,
IComboBoxComponent<TData, TValue>,
IComboBox<TData, TValue>,
IDropDownListEditorBase<TData, TValue>,
IListEditorBase<TData, TValue>,
IEditorBase,
IDropDownOwner,
IFocusableEditor,
IComboBoxSelectionProviderOwner<TData, TValue>,
IDropDownListEditorSelectionProviderOwner<TData, TValue>,
IListEditorSelectionProviderOwner<TData, TValue>,
IComboBoxAccessor<TData>,
IDropDownListEditorAccessor<TData>,
IListEditorAccessorBase<TData>
| Name | Description |
|---|---|
| TData |
The data item type.
| | TValue |
The value type.
|
The DevExpress ComboBox for Blazor (<DxComboBox>) component displays a drop-down window with a list of items. Users can select an item from a list and type text in the editor to filter list items that contain the search string. Users can also use keyboard to navigate between items and select them. When a user presses and holds an arrow key, the editor’s window continuously navigates between items.
Follow the steps below to add the ComboBox component to an application:
<DxComboBox>…</DxComboBox> markup to a .razor file.Refer to the following list for the component API reference: DxComboBox Members.
Blazor ComboBox does not support static render mode. Enable interactivity to use the component in your application. Refer to the following topic for more details: Enable Interactive Render Mode.
For in-depth information about DevExpress ComboBox for Blazor, review the following articles:
If a Blazor application throws unexpected exceptions, refer to the following help topic: Troubleshooting.
IComboBox<TData, TValue>
IDropDownListEditorBase<TData, TValue>
IListEditorBase<TData, TValue>
Object ComponentBase DxComponentBase DevExpress.Blazor.Internal.ParameterTrackerComponent DxEditorBase DxListEditorBase<TData, TValue> DxDropDownListEditorBase<TData, TValue> DxComboBox<TData, TValue>
See Also