Class GridViewComboBoxColumn
Represents column whose cells contains comboboxes bound to data source
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class GridViewComboBoxColumn : GridViewDataColumn, IDisposable, INotifyPropertyChanged, ICustomTypeDescriptor, IEditorProvider, INotifyPropertyChangingEx, IDataConversionInfoProvider, IGridViewEventListener, ITypeDescriptorContext, IServiceProvider, IBindableColumn
Constructors
GridViewComboBoxColumn()
Initializes a new instance of the GridViewComboBoxColumn.
Declaration
public GridViewComboBoxColumn()
See Also
GridViewComboBoxColumn(String)
Initializes a new instance of the GridViewComboBoxColumn.
Declaration
public GridViewComboBoxColumn(string fieldName)
Parameters
|
System.String
fieldName
A string value referring to the unique name of the column. |
See Also
GridViewComboBoxColumn(String, String)
Initializes a new instance of the GridViewComboBoxColumn.
Declaration
public GridViewComboBoxColumn(string uniqueName, string fieldName)
Parameters
|
System.String
uniqueName
A string value referring to the unique name of the column. |
|
System.String
fieldName
A string value referring to the field name to which the column is bound. |
Fields
AutoCompleteModeProperty
DropDownStyleProperty
Properties
AutoCompleteMode
Specifies the mode for the automatic completion feature used in the RadDropDownListEditor.
Declaration
public AutoCompleteMode AutoCompleteMode { get; set; }
Property Value
|
System.Windows.Forms.AutoCompleteMode
|
DataSource
Gets or sets the data source that populates the items for the RadDropDownListEditor.
Declaration
public object DataSource { get; set; }
Property Value
|
System.Object
|
Implements
DisplayMember
Gets or sets a string that specifies the property or database column from which to retrieve strings for display in the RadDropDownListEditor items.
Declaration
public string DisplayMember { get; set; }
Property Value
|
System.String
|
Implements
DisplayMemberDataType
Gets the data type of the display member.
Declaration
protected virtual Type DisplayMemberDataType { get; }
Property Value
|
System.Type
The display type of the member data. |
DisplayMemberSort
Gets or sets a value indicating whether [display member sort].
Declaration
public bool DisplayMemberSort { get; set; }
Property Value
|
System.Boolean
|
DropDownStyle
Gets or sets a value specifying the style of the RadDropDownListEditor.
Declaration
public RadDropDownStyle DropDownStyle { get; set; }
Property Value
|
RadDropDownStyle
|
FilteringMemberDataType
Gets the data type of the filtering member.
Declaration
protected virtual Type FilteringMemberDataType { get; }
Property Value
|
System.Type
The type of the filtering member data. |
FilteringMode
Gets or sets a value specifying the style of the RadDropDownListEditor.
Declaration
public GridViewFilteringMode FilteringMode { get; set; }
Property Value
|
GridViewFilteringMode
|
HasLookupValue
Gets a value indicating whether this column has lookup value.
Declaration
public bool HasLookupValue { get; }
Property Value
|
System.Boolean
|
SyncSelectionWithText
Gets a value that indicates the SelectedIndex will be synchronized with text in Editable area
Declaration
public bool SyncSelectionWithText { get; set; }
Property Value
|
System.Boolean
|
ValueMember
Gets or sets a string that specifies the property or database column from which to get values that correspond to the items in the RadDropDownListEditor.
Declaration
public string ValueMember { get; set; }
Property Value
|
System.String
|
Implements
Methods
DisposeManagedResources()
Disposes the manages resources
Declaration
protected override void DisposeManagedResources()
Overrides
GetCellType(GridViewRowInfo)
Gets the type of the cell.
Declaration
public override Type GetCellType(GridViewRowInfo row)
Parameters
|
GridViewRowInfo
row
The row. |
Returns
|
System.Type
|
Overrides
GetDefaultEditor()
GetDefaultEditorType()
Declaration
public override Type GetDefaultEditorType()
Returns
|
System.Type
|
Overrides
GetLookupValue(Object)
Returns the lookup value for the specified cell value
Declaration
public virtual object GetLookupValue(object cellValue)
Parameters
|
System.Object
cellValue
The cell value |
Returns
|
System.Object
The lookup value corresponding to the specified cell value |
Initialize()
Initializes this instance.
Declaration
protected override void Initialize()
Overrides
InitializeEditor(IInputEditor)
Declaration
public override void InitializeEditor(IInputEditor editor)
Parameters
|
IInputEditor
editor
|