[]
        
(Showing Draft Content)

C1.Web.Mvc.TagHelpers.ComboBoxBaseTagHelper-2

ComboBoxBaseTagHelper<T, TControl> Class

ITagHelper implementation for ComboBoxBase<T>.

Namespace: C1.Web.Mvc.TagHelpers
Assembly: C1.AspNetCore.Mvc.dll
Syntax
public abstract class ComboBoxBaseTagHelper<T, TControl> : DropDownTagHelper<T, TControl>, ITagHelper, ITagHelperComponent, ITemplateTagHelper where TControl : ComboBoxBase<T>
Type Parameters
Name Description
T
TControl

Constructors

Name Description
ComboBoxBaseTagHelper()

Properties

Name Description
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.

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