Class DataGridComboBoxColumn
A special DataGridTextColumn implementation which cell value editor is a RadComboBox control.
Inheritance
Inherited Members
Namespace: Telerik.Maui.Controls.DataGrid
Assembly: Telerik.Maui.Controls.dll
Syntax
public class DataGridComboBoxColumn : DataGridTextColumn, IDataDescriptorPeer, IDataGridColumnDefinition, ISupportCellStyle, INotifyPropertyChanged
Constructors
DataGridComboBoxColumn()
Declaration
public DataGridComboBoxColumn()
Fields
ItemDisplayBindingPathProperty
Identifies the ItemDisplayBindingPath dependency property.
Declaration
public static readonly BindableProperty ItemDisplayBindingPathProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ItemsSourcePathProperty
Identifies the ItemsSourcePath dependency property.
Declaration
public static readonly BindableProperty ItemsSourcePathProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ItemsSourceProperty
Identifies the ItemsSource dependency property.
Declaration
public static readonly BindableProperty ItemsSourceProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
ItemDisplayBindingPath
Gets or sets the display member path for the combobox editor.
Declaration
public string ItemDisplayBindingPath { get; set; }
Property Value
System.String
|
ItemsSource
Gets or sets the items source for the RadComboBox editor.
Declaration
public object ItemsSource { get; set; }
Property Value
System.Object
|
ItemsSourcePath
Gets or sets the path of the property that will be used as an items source for the RadComboBox editor.
Declaration
public string ItemsSourcePath { get; set; }
Property Value
System.String
|
Methods
CreateGroupDescriptor()
Creates the GroupDescriptorBase instance that is used to group by this column through the user interface.
Declaration
protected override GroupDescriptorBase CreateGroupDescriptor()
Returns
GroupDescriptorBase
|
Overrides
CreateSortDescriptor()
Creates the SortDescriptorBase instance that is used to sort by this column through the user interface.
Declaration
protected override SortDescriptorBase CreateSortDescriptor()
Returns
SortDescriptorBase
|
Overrides
GetValueForInstance(Object)
Retrieves the column value for the provided object instance. This actually represents the content of a grid cell where a cell is defined by a row (data item) and a column.
Declaration
public override object GetValueForInstance(object instance)
Parameters
System.Object
instance
|
Returns
System.Object
|