[]
ITagHelper implementation for ComboBoxBase<T>.
public abstract class ComboBoxBaseTagHelper<T, TControl> : DropDownTagHelper<T, TControl>, ITagHelper, ITagHelperComponent, ITemplateTagHelper where TControl : ComboBoxBase<T>
Public MustInherit Class ComboBoxBaseTagHelper(Of T, TControl As ComboBoxBase(Of T))
Inherits DropDownTagHelper(Of T, TControl)
Implements ITagHelper, ITagHelperComponent, ITemplateTagHelper
| Name | Description |
|---|---|
| T | |
| TControl |
| Name | Description |
|---|---|
| ComboBoxBaseTagHelper() |
| Name | Description |
|---|---|
| AriaLabelledBy | Configurates AriaLabelledBy. Sets the aria-labelledby attribute of input element. |
| CaseSensitiveSearch | Configurates CaseSensitiveSearch. Sets a value that determines whether searches performed while the user types should case-sensitive. |
| DisplayMemberPath | Configurates DisplayMemberPath. Sets the name of the property to use as the visual representation of the items. |
| FormatItem | Configurates the OnClientFormatItem client event. Event that fires when items in the drop-down list are created. |
| HandleWheel | Configurates HandleWheel. Sets a value that determines whether the user can use the mouse wheel to change the currently selected item. |
| HeaderPath | Configurates HeaderPath. Sets the name of a property to use for getting the value displayed in the control's input element. |
| IsContentHtml | Configurates IsContentHtml. Sets a value indicating whether the drop-down list displays items as plain text or as HTML. |
| IsEditable | Configurates IsEditable. Sets a value that enables or disables editing of the text in the input element of the ComboBox (defaults to false). |
| IsRequired | Configurates IsRequired. Sets a value that determines whether the control value must be set to a non-null value or whether it can be set to null (by deleting the content of the control). |
| ItemFormatter | Configurates ItemFormatter. Sets a function used to customize the values shown in the drop-down list. |
| ItemsSourceChanged | Configurates the OnClientItemsSourceChanged client event. Occurs when the value of the itemsSource property changes. |
| KeyActionDownArrow | Configurates KeyActionDownArrow. Sets the action to perform when the DOWN ARROW key is pressed. |
| KeyActionPrintCharacters | Configurates KeyActionPrintCharacters. Sets the action to perform when printable character keys are pressed (letters, numbers, symbols). |
| KeyActionTab | Configurates KeyActionTab. Sets the action to perform when the TAB key is pressed. |
| KeyActionUpArrow | Configurates KeyActionUpArrow. Sets the action to perform when the UP ARROW key is pressed. |
| MaxDropDownHeight | Configurates MaxDropDownHeight. Sets the maximum height of the drop-down list. |
| MaxDropDownWidth | Configurates MaxDropDownWidth. Sets the maximum width of the drop-down list. |
| SelectedIndex | Configurates SelectedIndex. Sets the index of the currently selected item in the drop-down list. |
| SelectedIndexChanged | Configurates the OnClientSelectedIndexChanged client event. Occurs when the value of the SelectedIndex property changes. |
| SelectedItem | Configurates SelectedItem. Sets the item that is currently selected in the drop-down list. |
| SelectedValue | Configurates SelectedValue. Sets the value of the SelectedValue, obtained using the SelectedValuePath. |
| SelectedValuePath | Configurates SelectedValuePath. Sets the name of the property used to get the SelectedValue from the SelectedItem. |
| ShowGroups | Configurates ShowGroups. Sets a value that determines whether the drop-down should include group header items to delimit data groups. |
| VirtualizationThreshold | Configurates VirtualizationThreshold. Sets the minimum number of rows and/or columns required to enable virtualization in the ComboBox |