Name |
Description |
AllowCustomText
|
Bool. Gets or sets a value indicating whether the ComboBox can store texts that are not in the list of items. Default: false
See also working example.
|
AllowEdit
|
Bool. Gets or sets a value indicating whether the input field is editable by the user. Default: true
See also working example.
|
AutoClose
|
Bool. Gets or sets a value indicating whether the drop down menu should be collapsed when an item from the list is selected. Default: true
|
AutoPostBack
|
Bool. Gets or sets a value indicating whether the page will be posted back to the server when the selected item is changed. Default: false
See also working example.
|
AutoValidate
|
Bool. Gets or sets a value indicating whether Tab/Enter needs to be pressed in order to persist the text typed in the input field. Default: false
See also working example.
|
ClientSideEvents
|
ComboBoxClientSideEvents. Property used to define the Client-Side Events.
See also working example.
|
CssSettings
|
ComboBoxCssSettings. Property used to define the CSS Settings.
|
DataSource
|
Object. Gets or sets the object from which the ComboBox retrieves its list of data items.
|
DataSourceID
|
Object. Gets or sets the ID of the control from which the ComboBox retrieves its list of data items.
|
DataTextField
|
String. Gets or sets the field of the data source that provides the text content of the list items.
|
DataValueField
|
String. Gets or sets the field of the data source that provides the value of each list item.
|
Details
|
ComboBoxDetailCollection. Collection containing the detail for a master ComboBox.
|
EmptyText
|
String. Gets or sets the text that is displayed in the ComboBox when no item is selected.
|
Enabled
|
Bool. Gets or sets a value indicating whether the ComboBox control is enabled.
See also working example.
|
EnableLoadOnDemand
|
Bool. Gets or sets a value indicating whether the on demand loading feature is enabled. Default: false
See also working example.
|
EnableVirtualScrolling
|
Bool. Gets or sets a value indicating whether items are loaded on demand when the drop down menu is scrolled. Default: false
See also working example.
|
FilterType
|
ComboBoxFilterType. Gets or sets the type of the filter that is used by the ComboBox. Default: ComboBoxFilterType.None
See also working example.
|
Focused
|
Bool. Gets or sets a value indicating whether the combobox will be focused when the page is loaded. Default: false
|
FolderStyle
|
String. The folder containing the css stylesheet used by the control.
See also working example.
|
FooterTemplate
|
ITemplate. The template used for the footer of the ComboBox.
|
HeaderTemplate
|
ITemplate. The template used for the header of the ComboBox.
|
Height
|
Unit. Gets or sets the height of the drop down menu.
See also working example.
|
ID
|
String. Gets or sets the programmatic identifier assigned to the ComboBox control.
|
Items
|
ComboBoxItemCollection. Gets the collection of items in the list.
|
ItemTemplate
|
ITemplate. The template to be used for the items of the ComboBox.
See also working example.
|
LoadingText
|
String. Gets or sets the text that is displayed while the ComboBox loads its items on demand.
See also working example.
|
MenuWidth
|
Unit. Gets or sets the width of the drop down menu. Default: same as Width
See also working example.
|
Mode
|
Gets or sets the mode in which the CombobBox operates.
See also working example.
|
MultiSelectionSeparator
|
String. Gets or sets a value indicating the character(s) that will be used to separate a multi item selection. Default: ","
See also working example.
|
OpenOnFocus
|
Bool. Gets or sets a value indicating whether the drop down list with items should be opened when the ComboBox is focused. Default: true
See also working example.
|
SelectedIndex
|
Int. Gets or sets a value indicating the selected index. Default: -1
See also working example.
|
SelectedText
|
String. Gets or sets the selected text of the ComboBox.
See also working example.
|
SelectedValue
|
String. Gets or sets the selected value of the ComboBox.
See also working example.
|
SelectionMode
|
ListSelectionMode. Gets or sets a value indicating the selection mode used by the ComboBox. Default: ListSelectionMode.Single
See also working example.
|
ShowSelectedImage
|
Bool Gets or sets a value indicating whether the image of the selected item (if any) should be displayed in the top section of the ComboBox. Default: false
See also working example.
|
Visible
|
Bool. Gets or sets a value that indicates whether the ComboBox is rendered as UI on the page. Default: true
|
Width
|
Unit. Gets or sets the width of the ComboBox. Default: 150px
See also working example.
|